// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The root object. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Encode { using HandBrake.ApplicationServices.Interop.Json.Shared; /// /// The root object. /// public class JsonEncodeObject { /// /// Gets or sets the audio. /// public Audio Audio { get; set; } /// /// Gets or sets the destination. /// public Destination Destination { get; set; } /// /// Gets or sets the filter. /// public Filters Filters { get; set; } /// /// Gets or sets the PAR /// public PAR PAR { get; set; } /// /// Gets or sets the meta data. /// public Metadata Metadata { get; set; } /// /// Gets or sets the sequence id. /// public int SequenceID { get; set; } /// /// Gets or sets the source. /// public Source Source { get; set; } /// /// Gets or sets the subtitle. /// public Subtitles Subtitle { get; set; } /// /// Gets or sets the video. /// public Video Video { get; set; } } }