blob: d506af0865e25c17a4bc3d5c5db0e520166e70bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="SourceSubtitleTrack.cs" company="HandBrake Project (https://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// The subtitle list.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Interop.Json.Scan
{
/// <summary>
/// The subtitle list.
/// </summary>
public class SourceSubtitleTrack
{
/// <summary>
/// Gets or sets the format.
/// </summary>
public string Format { get; set; }
/// <summary>
/// Gets or sets the language.
/// </summary>
public string Language { get; set; }
/// <summary>
/// Gets or sets the language code.
/// </summary>
public string LanguageCode { get; set; }
/// <summary>
/// Gets or sets the source.
/// </summary>
public int Source { get; set; }
public string SourceName { get; set; }
public string Name { get; set; }
/// <summary>
/// Gets or sets subtitle attribute information.
/// </summary>
public SubtitleAttributes Attributes { get; set; }
}
}
|