// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The srt. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Encode { /// /// The srt. /// public class SRT { /// /// Gets or sets the codeset. /// public string Codeset { get; set; } /// /// Gets or sets the filename. /// public string Filename { get; set; } /// /// Gets or sets the language. /// public string Language { get; set; } } }