/* Cropping.cs $ This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ namespace HandBrake.ApplicationServices.Model.Encoding { /// /// Cropping T B L R /// public class Cropping { /// /// Initializes a new instance of the class. /// public Cropping() { } /// /// Initializes a new instance of the class. /// /// /// The Top Value /// /// /// The Bottom Value /// /// /// The Left Value /// /// /// The Right Value /// public Cropping(int top, int bottom, int left, int right) { this.Top = top; this.Bottom = bottom; this.Left = left; this.Right = right; } /// /// 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; } } }