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

@ -79,4 +79,6 @@ public class NotificationConnector(string name, string url, Dictionary<string, s
return sb.ToString();
}
}
public override string ToString() => $"{GetType().Name} {Name}";
}