feat: implement notification sound functionality with user customization options

This commit is contained in:
HueByte
2026-02-19 22:03:16 +01:00
parent b508a5854a
commit 7a8b5f02d3
15 changed files with 236 additions and 35 deletions
+2 -1
View File
@@ -10,7 +10,8 @@ public class ClientConfig
public class NotificationConfig
{
public bool Enabled { get; set; } = true;
public bool Enabled { get; set; } = false;
public byte Volume { get; set; } = 30;
public string? SoundFile { get; set; }
}