blob: fa3d26c26802678cfa877d3c0a564892996dc2ee (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="JsonEncodeObject.cs" company="HandBrake Project (http://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 root object.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Interop.Json.Encode
{
using HandBrake.Interop.Interop.Json.Shared;
/// <summary>
/// The root object.
/// </summary>
public class JsonEncodeObject
{
/// <summary>
/// Gets or sets the audio.
/// </summary>
public Audio Audio { get; set; }
/// <summary>
/// Gets or sets the destination.
/// </summary>
public Destination Destination { get; set; }
/// <summary>
/// Gets or sets the filter.
/// </summary>
public Filters Filters { get; set; }
/// <summary>
/// Gets or sets the PAR
/// </summary>
public PAR PAR { get; set; }
/// <summary>
/// Gets or sets the meta data.
/// </summary>
public Metadata Metadata { get; set; }
/// <summary>
/// Gets or sets the sequence id.
/// </summary>
public int SequenceID { get; set; }
/// <summary>
/// Gets or sets the source.
/// </summary>
public Source Source { get; set; }
/// <summary>
/// Gets or sets the subtitle.
/// </summary>
public Subtitles Subtitle { get; set; }
/// <summary>
/// Gets or sets the video.
/// </summary>
public Video Video { get; set; }
}
}
|