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