diff options
author | sr55 <[email protected]> | 2019-05-10 22:37:25 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2019-05-10 22:37:25 +0100 |
commit | d66c23d4a81c6165965114e855a4f361c9481649 (patch) | |
tree | 650f51b9ef6308582394f6316ecff58f7776bf6f /win/CS/HandBrake.Interop | |
parent | 38af1c5f6595fd7ab01f1672197aabe9f87aa5b4 (diff) |
WinGui: Switch the GUI over to using JSON for the queue. (Note, this is not the same format as the CLI and thus cannot be imported. This may happen in the future)
Please finish existing queue before installing new version.
Diffstat (limited to 'win/CS/HandBrake.Interop')
-rw-r--r-- | win/CS/HandBrake.Interop/Model/HBConfiguration.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/win/CS/HandBrake.Interop/Model/HBConfiguration.cs b/win/CS/HandBrake.Interop/Model/HBConfiguration.cs index 2ec9f8302..06362dd14 100644 --- a/win/CS/HandBrake.Interop/Model/HBConfiguration.cs +++ b/win/CS/HandBrake.Interop/Model/HBConfiguration.cs @@ -9,11 +9,12 @@ namespace HandBrake.Interop.Model { - /// <summary> - /// HandBrakes configuration options - /// </summary> public class HBConfiguration { + public HBConfiguration() + { + } + /// <summary> /// Gets or sets a value indicating whether is dvd nav disabled. /// </summary> |