summaryrefslogtreecommitdiffstats
path: root/win/C#/interop/Model/Cropping.cs
blob: 1ba0e8ee1a54e402ddee6413c7ea04aad9bb7c5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

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; }
    }
}