1
0
mirror of https://github.com/DarthAffe/RGBSyncPlus synced 2025-12-13 01:18:30 +00:00

25 lines
476 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 List<SyncGroup> SyncGroups { get; set; } = new List<SyncGroup>();
#endregion
}
}