mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-01-23 02:12:14 +00:00
20 lines
427 B
C#
20 lines
427 B
C#
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; }
|
|
}
|
|
}
|