// --------------------------------------------------------------------------------------------------------------------
//
// 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
{
///
/// The geometry.
///
public class Geometry
{
///
/// Gets or sets the height.
///
public int Height { get; set; }
///
/// Gets or sets the par.
///
public PAR PAR { get; set; }
///
/// Gets or sets the width.
///
public int Width { get; set; }
}
}