// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The geometry. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Anamorphic { using HandBrake.ApplicationServices.Interop.Json.Shared; /// /// The geometry. /// public class AnamorphicGeometry { /// /// Gets or sets the dest geometry. /// public DestSettings DestSettings { get; set; } /// /// Gets or sets the source geometry. /// public Geometry SourceGeometry { get; set; } } }