2025-11-23 20:53:45 -06:00
|
|
|
|
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();
|
2026-04-21 18:31:14 -05:00
|
|
|
|
public NotificationSettings Notifications { get; set; } = new();
|
2025-11-23 20:53:45 -06:00
|
|
|
|
public WindowSettings Window { get; set; } = new();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|