// --------------------------------------------------------------------------------------------------------------------
//
// 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.Interop.Json.Encode
{
using HandBrake.Interop.Json.Anamorphic;
///
/// The root object.
///
internal 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 Filter Filter { 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 Subtitle Subtitle { get; set; }
///
/// Gets or sets the video.
///
public Video Video { get; set; }
}
}