This repository has been archived on 2025-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
ShiftOS_TheReturn/ShiftOS.WinForms/ShiftOSConfigFile.cs

21 lines
427 B
C#
Raw Normal View History

2017-02-18 10:37:11 -05:00
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; }
}
}