From f83ab26ab8e1d2ce277f0c12f23b5753bf63d763 Mon Sep 17 00:00:00 2001 From: sr55 Date: Tue, 19 Nov 2013 21:55:44 +0000 Subject: WinGui: Started work on API improvements in the Application services dll. Removing the concept of user settings and replacing it with a Configuration object. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5896 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- .../Model/HBConfiguration.cs | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 win/CS/HandBrake.ApplicationServices/Model/HBConfiguration.cs (limited to 'win/CS/HandBrake.ApplicationServices/Model/HBConfiguration.cs') 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 @@ +// -------------------------------------------------------------------------------------------------------------------- +// +// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. +// +// +// HandBrakes Configuration options +// +// -------------------------------------------------------------------------------------------------------------------- + +namespace HandBrake.ApplicationServices.Model +{ + /// + /// HandBrakes configuration options + /// + public class HBConfiguration + { + /// + /// Gets or sets a value indicating whether is logging enabled. + /// + public bool IsLoggingEnabled { get; set; } + + /// + /// Gets or sets a value indicating whether is dvd nav disabled. + /// + public bool IsDvdNavDisabled { get; set; } + } +} -- cgit v1.2.3