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