namespace MediaBrowser.Model.ApiClient
{
    /// 
    /// The server discovery info model.
    /// 
    public class ServerDiscoveryInfo
    {
        /// 
        /// Initializes a new instance of the  class.
        /// 
        /// The server address.
        /// The server id.
        /// The server name.
        /// The endpoint address.
        public ServerDiscoveryInfo(string address, string id, string name, string? endpointAddress = null)
        {
            Address = address;
            Id = id;
            Name = name;
            EndpointAddress = endpointAddress;
        }
        /// 
        /// Gets the address.
        /// 
        public string Address { get; }
        /// 
        /// Gets the server identifier.
        /// 
        public string Id { get; }
        /// 
        /// Gets the name.
        /// 
        public string Name { get; }
        /// 
        /// Gets the endpoint address.
        /// 
        public string? EndpointAddress { get; }
    }
}