// -------------------------------------------------------------------------------------------------------------------- // // 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 { /// /// The srt subtitle. /// public class SrtSubtitle { #region Properties /// /// Gets or sets the character code. /// public string CharacterCode { get; set; } /// /// Gets or sets a value indicating whether default. /// public bool Default { get; set; } /// /// Gets or sets the file name. /// public string FileName { get; set; } /// /// Gets or sets the language code. /// public string LanguageCode { get; set; } /// /// Gets or sets the offset. /// public int Offset { get; set; } #endregion #region Public Methods /// /// The clone. /// /// /// The . /// public SrtSubtitle Clone() { return new SrtSubtitle { Default = this.Default, FileName = this.FileName, LanguageCode = this.LanguageCode, CharacterCode = this.CharacterCode, Offset = this.Offset }; } #endregion } }