diff options
Diffstat (limited to 'ShiftOS.WinForms/ShiftOSConfigFile.cs')
| -rw-r--r-- | ShiftOS.WinForms/ShiftOSConfigFile.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/ShiftOSConfigFile.cs b/ShiftOS.WinForms/ShiftOSConfigFile.cs new file mode 100644 index 0000000..60a9a41 --- /dev/null +++ b/ShiftOS.WinForms/ShiftOSConfigFile.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ShiftOS.WinForms +{ + public class ShiftOSConfigFile + { + public ShiftOSConfigFile() + { + AudioVolume = 0.5F; + Desktops = new List<string>(); + } + + public float AudioVolume { get; set; } + public List<string> Desktops { get; set; } + } +} |
