namespace MediaBrowser.Model.System
{
    public class PublicSystemInfo
    {
        /// 
        /// Gets or sets the local address.
        /// 
        /// The local address.
        public string LocalAddress { get; set; }
        /// 
        /// Gets or sets the wan address.
        /// 
        /// The wan address.
        public string WanAddress { get; set; }
        /// 
        /// Gets or sets the name of the server.
        /// 
        /// The name of the server.
        public string ServerName { get; set; }
        /// 
        /// Gets or sets the version.
        /// 
        /// The version.
        public string Version { get; set; }
        /// 
        /// Gets or sets the operating sytem.
        /// 
        /// The operating sytem.
        public string OperatingSystem { get; set; }
        /// 
        /// Gets or sets the id.
        /// 
        /// The id.
        public string Id { get; set; }
    }
}