diff options
Diffstat (limited to 'Software/Visual_Studio_v2/Tango.BLL/Objects/MachineSettings.cs')
| -rw-r--r-- | Software/Visual_Studio_v2/Tango.BLL/Objects/MachineSettings.cs | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Software/Visual_Studio_v2/Tango.BLL/Objects/MachineSettings.cs b/Software/Visual_Studio_v2/Tango.BLL/Objects/MachineSettings.cs new file mode 100644 index 000000000..c230b7199 --- /dev/null +++ b/Software/Visual_Studio_v2/Tango.BLL/Objects/MachineSettings.cs @@ -0,0 +1,29 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tango.BLL.Objects +{ + public class MachineSettings + { + public string OSKey { get; set; } + + public bool AutoLogin { get; set; } + + public bool AutoCheckForUpdates { get; set; } + + public bool SetupActivation { get; set; } + + public bool SetupRemoteAssistance { get; set; } + + public bool SetupUWF { get; set; } + + public bool SetupFirmware { get; set; } + + public bool IsDemo { get; set; } + + public bool SuspendVersionUpdate { get; set; } + + public bool PerformSchemaUpdateOnVersionUpdate { get; set; } + } +} |
