diff options
author | sr55 <[email protected]> | 2014-12-20 14:36:56 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2014-12-20 14:36:56 +0000 |
commit | 064322050804f20792408bcd45609276d4ba4240 (patch) | |
tree | 2612d590804ad45dc3eed848ba349696cf80384d /win/CS/HandBrake.Interop/HandBrakeInterop/Json/Scan/PAR.cs | |
parent | 541c3053f07d7cf9b90f168ee27fa121082d677b (diff) |
WinGui: Switch to using the new JSON based scan API.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6622 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop/Json/Scan/PAR.cs')
-rw-r--r-- | win/CS/HandBrake.Interop/HandBrakeInterop/Json/Scan/PAR.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Json/Scan/PAR.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Json/Scan/PAR.cs new file mode 100644 index 000000000..ef7e55020 --- /dev/null +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Json/Scan/PAR.cs @@ -0,0 +1,27 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="PAR.cs" company="HandBrake Project (http://handbrake.fr)">
+// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
+// </copyright>
+// <summary>
+// The par.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrake.Interop.Json.Scan
+{
+ /// <summary>
+ /// The par.
+ /// </summary>
+ internal class PAR
+ {
+ /// <summary>
+ /// Gets or sets the height.
+ /// </summary>
+ public int Num { get; set; }
+
+ /// <summary>
+ /// Gets or sets the width.
+ /// </summary>
+ public int Den { get; set; }
+ }
+}
\ No newline at end of file |