diff options
Diffstat (limited to 'win/C#/interop/Model/Cropping.cs')
-rw-r--r-- | win/C#/interop/Model/Cropping.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/win/C#/interop/Model/Cropping.cs b/win/C#/interop/Model/Cropping.cs new file mode 100644 index 000000000..1ba0e8ee1 --- /dev/null +++ b/win/C#/interop/Model/Cropping.cs @@ -0,0 +1,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; }
+ }
+}
|