First runnable prototype.

This commit is contained in:
2025-07-05 18:02:25 +02:00
parent cc00c4da08
commit 908774c5aa
10 changed files with 385 additions and 219 deletions

View File

@ -7,5 +7,9 @@ namespace MessengerBroker.Configuration.Model.Servers
/// </summary>
public class SlaveServer : Server
{
public override string ToString()
{
return $"{this.Name} (ID {this.BrokerId})";
}
}
}