LANCommander/LANCommander.Launcher.Settings/Settings.cs
2026-04-21 18:31:14 -05:00

12 lines
416 B
C#

namespace LANCommander.Launcher.Settings
{
public class Settings : SDK.Models.Settings
{
public int LaunchCount { get; set; } = 0;
public DatabaseSettings Database { get; set; } = new();
public FilterSettings Filter { get; set; } = new();
public NotificationSettings Notifications { get; set; } = new();
public WindowSettings Window { get; set; } = new();
}
}