2018-12-27 23:27:57 +00:00
|
|
|
namespace MediaBrowser.Model.System
|
|
|
|
{
|
|
|
|
public class PublicSystemInfo
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the local address.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The local address.</value>
|
|
|
|
public string LocalAddress { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the wan address.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The wan address.</value>
|
|
|
|
public string WanAddress { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the name of the server.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The name of the server.</value>
|
|
|
|
public string ServerName { get; set; }
|
|
|
|
|
2019-01-08 00:57:01 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the server version.
|
|
|
|
/// </summary>
|
2019-01-20 00:12:44 +00:00
|
|
|
/// <value>The version.</value>
|
2019-02-03 16:09:12 +00:00
|
|
|
public string Version { get; set; }
|
2019-01-08 00:57:01 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
/// <summary>
|
2019-02-03 16:09:12 +00:00
|
|
|
/// Gets or sets the operating system.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
2019-02-03 16:09:12 +00:00
|
|
|
/// <value>The operating system.</value>
|
2018-12-27 23:27:57 +00:00
|
|
|
public string OperatingSystem { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the id.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The id.</value>
|
|
|
|
public string Id { get; set; }
|
|
|
|
}
|
2019-01-13 19:31:15 +00:00
|
|
|
}
|