summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Cropping.cs
blob: efd979fc44370f4844af649cf8b432e55910b993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace HandBrake.Interop
{
	public class Cropping
	{
		public int Top { get; set; }
		public int Bottom { get; set; }
		public int Left { get; set; }
		public int Right { get; set; }

		public Cropping Clone()
		{
			return new Cropping
			{
				Top = this.Top,
				Bottom = this.Bottom,
				Left = this.Left,
				Right = this.Right
			};
		}
	}
}