// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the Cropping type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.Interop.Model { /// /// Cropping T B L R /// public class Cropping { /// /// Gets or sets Top. /// public int Top { get; set; } /// /// Gets or sets Bottom. /// public int Bottom { get; set; } /// /// Gets or sets Left. /// public int Left { get; set; } /// /// Gets or sets Right. /// public int Right { get; set; } } }