diff options
Diffstat (limited to 'win/CS/HandBrake.Interop/Interop/Json/Encode/JsonEncodeObject.cs')
-rw-r--r-- | win/CS/HandBrake.Interop/Interop/Json/Encode/JsonEncodeObject.cs | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Interop/Interop/Json/Encode/JsonEncodeObject.cs b/win/CS/HandBrake.Interop/Interop/Json/Encode/JsonEncodeObject.cs new file mode 100644 index 000000000..fa3d26c26 --- /dev/null +++ b/win/CS/HandBrake.Interop/Interop/Json/Encode/JsonEncodeObject.cs @@ -0,0 +1,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; } + } +}
\ No newline at end of file |