diff options
| author | Michael <[email protected]> | 2017-02-18 10:37:11 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-02-18 10:37:11 -0500 |
| commit | 9b8d5861a954610713ae66a53d2ac067991d9b68 (patch) | |
| tree | e550f758e52ec8ca12357d91c9fa13907e70c4f3 /ShiftOS.WinForms/ShiftOSConfigFile.cs | |
| parent | 30823a0778614d0f9fd6f82b5d9eb03aab41280d (diff) | |
| download | shiftos_thereturn-9b8d5861a954610713ae66a53d2ac067991d9b68.tar.gz shiftos_thereturn-9b8d5861a954610713ae66a53d2ac067991d9b68.tar.bz2 shiftos_thereturn-9b8d5861a954610713ae66a53d2ac067991d9b68.zip | |
WHOA LUA STUFF :dancer:
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; } + } +} |
