// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// The subtitle list.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Interop.Json.Scan
{
///
/// The subtitle list.
///
internal class SubtitleList
{
///
/// Gets or sets the format.
///
public int Format { get; set; }
///
/// Gets or sets the language.
///
public string Language { get; set; }
///
/// Gets or sets the language code.
///
public string LanguageCode { get; set; }
///
/// Gets or sets the source.
///
public int Source { get; set; }
}
}