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

16 lines
480 B
C#

namespace LANCommander.Launcher.Settings
{
public class NotificationSettings
{
public bool NotifyOnInstallComplete { get; set; } = true;
public bool NotifyOnInstallFailed { get; set; } = true;
public bool NotifyOnChatMessage { get; set; } = true;
public NotificationSoundTheme SoundTheme { get; set; } = NotificationSoundTheme.SystemDefault;
}
public enum NotificationSoundTheme
{
SystemDefault,
Silent
}
}