ToString overrides

This commit is contained in:
2025-07-03 20:38:18 +02:00
parent d6f0630a99
commit f05f2cc8e0
10 changed files with 21 additions and 8 deletions

View File

@ -45,7 +45,7 @@ public class Notification : Identifiable
this.IsSent = isSent;
}
public override string ToString() => $"{base.ToString()} {Urgency} {Title}";
public override string ToString() => $"{base.ToString()} {Urgency} {Title} {Message}";
}
public enum NotificationUrgency : byte