// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// The destination.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Json.Encode
{
using System.Collections.Generic;
///
/// The destination.
///
public class Destination
{
///
/// Gets or sets the chapter list.
///
public List ChapterList { get; set; }
///
/// Gets or sets a value indicating whether chapter markers.
///
public bool ChapterMarkers { get; set; }
///
/// Gets or sets the file.
///
public string File { get; set; }
///
/// Gets or sets the mp 4 options.
///
public Mp4Options Mp4Options { get; set; }
///
/// Gets or sets the mux.
///
public int Mux { get; set; }
}
}