// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Represents a subtitle track to encode. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Encode { /// /// Represents a subtitle track to encode. /// public class SubtitleTrack { /// /// Gets or sets a value indicating whether burn. /// public bool Burn { get; set; } /// /// Gets or sets a value indicating whether default. /// public bool Default { get; set; } /// /// Gets or sets a value indicating whether force. /// public bool Forced { get; set; } /// /// Gets or sets the id. /// public int ID { get; set; } /// /// Gets or sets the offset. /// public int Offset { get; set; } /// /// Gets or sets the track. /// public int Track { get; set; } /// /// Gets or sets the srt. /// public SRT SRT { get; set; } } }