summaryrefslogtreecommitdiffstats
path: root/win/C#/interop/Model/Cropping.cs
blob: bc5aad24e1649ed1149b73a510d90a168c03f6f0 (plain)
1
2
3
4
5
6
7
8
9
10
namespace HandBrake.Interop.Model
{
    public class Cropping
    {
        public int Top { get; set; }
        public int Bottom { get; set; }
        public int Left { get; set; }
        public int Right { get; set; }
    }
}