mirror of
https://github.com/DarthAffe/RGBSyncPlus
synced 2025-12-12 17:08:31 +00:00
27 lines
534 B
C#
27 lines
534 B
C#
using System.Collections.Generic;
|
|
using RGBSyncPlus.Model;
|
|
|
|
namespace RGBSyncPlus.Configuration
|
|
{
|
|
public class Settings
|
|
{
|
|
#region Constants
|
|
|
|
public const int CURRENT_VERSION = 1;
|
|
|
|
#endregion
|
|
|
|
#region Properties & Fields
|
|
|
|
public int Version { get; set; } = 0;
|
|
|
|
public double UpdateRate { get; set; } = 30.0;
|
|
|
|
public bool MinimizeToTray { get; set; } = true;
|
|
|
|
public List<SyncGroup> SyncGroups { get; set; } = new List<SyncGroup>();
|
|
|
|
#endregion
|
|
}
|
|
}
|