using MessengerBroker.Configuration.Model.Servers.Base; namespace MessengerBroker.Configuration.Model.Servers { /// /// Server that we have to pull data from and provide alternate service for. /// public class MasterServer : Server { /// /// Url of the Broker API we use to download the data. /// public string BrokerUrl { get; set; } public override string ToString() { return $"{this.Name} ({this.BrokerUrl}, ID {this.BrokerId})"; } } }