// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the SourceSubtitle type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.Interop.Model { public class SourceSubtitle { /// /// Gets or sets the 1-based subtitle track number. 0 means foreign audio search. /// public int TrackNumber { get; set; } public bool Default { get; set; } public bool Forced { get; set; } public bool BurnedIn { get; set; } public SourceSubtitle Clone() { return new SourceSubtitle { TrackNumber = this.TrackNumber, Default = this.Default, Forced = this.Forced, BurnedIn = this.BurnedIn }; } } }