15 lines
411 B
C#
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})";
|
|
}
|
|
}
|
|
} |