diff options
author | sr55 <[email protected]> | 2011-07-16 15:20:49 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-07-16 15:20:49 +0000 |
commit | a3ceaf6979ff137b3e71ebaeee3a52942aeac3fa (patch) | |
tree | 71aea12c217d4013cbe03a30d8330290d84c0d2f /win/CS/HandBrake.Interop/HandBrakeInterop | |
parent | 7115956c6beb4f62cd8718a39bb4206ff726d890 (diff) |
WinGui: Starting to remove model objects from the Application Services module that are duplicated in the Interop Library
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4109 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop')
-rw-r--r-- | win/CS/HandBrake.Interop/HandBrakeInterop/Model/Cropping.cs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Cropping.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Cropping.cs index b13526c1e..e13c9daff 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Cropping.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Cropping.cs @@ -11,6 +11,36 @@ namespace HandBrake.Interop.Model {
public class Cropping
{
+ /// <summary>
+ /// Initializes a new instance of the <see cref="Cropping"/> class.
+ /// </summary>
+ public Cropping()
+ {
+ }
+
+ /// <summary>
+ /// Initializes a new instance of the <see cref="Cropping"/> class.
+ /// </summary>
+ /// <param name="top">
+ /// The Top Value
+ /// </param>
+ /// <param name="bottom">
+ /// The Bottom Value
+ /// </param>
+ /// <param name="left">
+ /// The Left Value
+ /// </param>
+ /// <param name="right">
+ /// The Right Value
+ /// </param>
+ public Cropping(int top, int bottom, int left, int right)
+ {
+ this.Top = top;
+ this.Bottom = bottom;
+ this.Left = left;
+ this.Right = right;
+ }
+
public int Top { get; set; }
public int Bottom { get; set; }
public int Left { get; set; }
|