aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/ShiftOSConfigFile.cs
blob: 60a9a41e44d6097deddf9df367b7789c250367f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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; }
    }
}