// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The dest geometry. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Anamorphic { using System.Collections.Generic; using HandBrake.ApplicationServices.Interop.Json.Shared; /// /// The dest geometry. /// public class DestSettings { /// /// Initializes a new instance of the class. /// public DestSettings() { this.Geometry = new Geometry(); } /// /// Gets or sets the anamorphic mode. /// public int AnamorphicMode { get; set; } /// /// Gets or sets the crop. /// public List Crop { get; set; } /// /// Gets or sets the Geometry /// public Geometry Geometry { get; set; } /// /// Gets or sets a value indicating whether itu par. /// public bool ItuPAR { get; set; } /// /// Gets or sets a value indicating whether keep display aspect. /// public int Keep { get; set; } /// /// Gets or sets the max height. /// public int MaxHeight { get; set; } /// /// Gets or sets the max width. /// public int MaxWidth { get; set; } /// /// Gets or sets the modulus. /// public int Modulus { get; set; } } }