diff options
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Model/HBConfiguration.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Model/HBConfiguration.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Model/HBConfiguration.cs b/win/CS/HandBrake.ApplicationServices/Model/HBConfiguration.cs new file mode 100644 index 000000000..35d07dcfc --- /dev/null +++ b/win/CS/HandBrake.ApplicationServices/Model/HBConfiguration.cs @@ -0,0 +1,27 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="HBConfiguration.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>
+// HandBrakes Configuration options
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrake.ApplicationServices.Model
+{
+ /// <summary>
+ /// HandBrakes configuration options
+ /// </summary>
+ public class HBConfiguration
+ {
+ /// <summary>
+ /// Gets or sets a value indicating whether is logging enabled.
+ /// </summary>
+ public bool IsLoggingEnabled { get; set; }
+
+ /// <summary>
+ /// Gets or sets a value indicating whether is dvd nav disabled.
+ /// </summary>
+ public bool IsDvdNavDisabled { get; set; }
+ }
+}
|