summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Interop/Json/Presets/PresetTransportContainer.cs13
1 files changed, 12 insertions, 1 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Json/Presets/PresetTransportContainer.cs b/win/CS/HandBrake.ApplicationServices/Interop/Json/Presets/PresetTransportContainer.cs
index 8f1dd9e78..8eb2b4cfc 100644
--- a/win/CS/HandBrake.ApplicationServices/Interop/Json/Presets/PresetTransportContainer.cs
+++ b/win/CS/HandBrake.ApplicationServices/Interop/Json/Presets/PresetTransportContainer.cs
@@ -18,10 +18,21 @@ namespace HandBrake.ApplicationServices.Interop.Json.Presets
/// </summary>
public class PresetTransportContainer
{
+ public PresetTransportContainer()
+ {
+ }
+
+ public PresetTransportContainer(string versionMajor, string versionMinor, string versionMicro)
+ {
+ this.VersionMajor = versionMajor;
+ this.VersionMicro = versionMicro;
+ this.VersionMinor = versionMinor;
+ }
+
/// <summary>
/// Gets or sets the children array.
/// </summary>
- public List<HBPreset> PresetList { get; set; }
+ public List<object> PresetList { get; set; }
/// <summary>
/// Gets or sets the version major.