// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the SrtSubtitle type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.Interop.Model { /// /// A Srt Subtitle /// public class SrtSubtitle { /// /// Gets or sets a value indicating whether Default. /// public bool Default { get; set; } /// /// Gets or sets FileName. /// public string FileName { get; set; } /// /// Gets or sets LanguageCode. /// public string LanguageCode { get; set; } /// /// Gets or sets CharacterCode. /// public string CharacterCode { get; set; } /// /// Gets or sets Offset. /// public int Offset { get; set; } /// /// Close the SRT Subtitle object /// /// /// a SrtSubtitle /// public SrtSubtitle Clone() { return new SrtSubtitle { Default = this.Default, FileName = this.FileName, LanguageCode = this.LanguageCode, CharacterCode = this.CharacterCode, Offset = this.Offset }; } } }