diff options
Diffstat (limited to 'win/CS/HandBrake.Interop/Interop/Interfaces/Model/AnamorphicResult.cs')
-rw-r--r-- | win/CS/HandBrake.Interop/Interop/Interfaces/Model/AnamorphicResult.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Interop/Interop/Interfaces/Model/AnamorphicResult.cs b/win/CS/HandBrake.Interop/Interop/Interfaces/Model/AnamorphicResult.cs new file mode 100644 index 000000000..d949eb354 --- /dev/null +++ b/win/CS/HandBrake.Interop/Interop/Interfaces/Model/AnamorphicResult.cs @@ -0,0 +1,19 @@ +// -------------------------------------------------------------------------------------------------------------------- +// <copyright file="AnamorphicResult.cs" company="HandBrake Project (https://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> +// -------------------------------------------------------------------------------------------------------------------- + +namespace HandBrake.Interop.Interop.Interfaces.Model +{ + public class AnamorphicResult + { + public int OutputWidth { get; set; } + + public int OutputHeight { get; set; } + + public double OutputParWidth { get; set; } + + public double OutputParHeight { get; set; } + } +} |