Files
messengerapi.Broker/code/MessengerBroker.Configuration/Model/Servers/SlaveServer.cs
2025-07-05 18:02:25 +02:00

15 lines
411 B
C#

using MessengerBroker.Configuration.Model.Servers.Base;
namespace MessengerBroker.Configuration.Model.Servers
{
/// <summary>
/// Server that is pulling data from us and has to provide alternate service for us.
/// </summary>
public class SlaveServer : Server
{
public override string ToString()
{
return $"{this.Name} (ID {this.BrokerId})";
}
}
}