2020-04-05 16:10:56 +00:00
|
|
|
#nullable disable
|
2020-02-04 00:49:27 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2023-01-26 08:05:00 +00:00
|
|
|
using System;
|
|
|
|
|
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 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-09-19 14:55:58 +00:00
|
|
|
|
2019-04-16 05:38:00 +00:00
|
|
|
/// <summary>
|
2020-09-06 20:27:31 +00:00
|
|
|
/// Gets or sets the product name. This is the AssemblyProduct name.
|
2019-04-16 05:38:00 +00:00
|
|
|
/// </summary>
|
|
|
|
public string ProductName { 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>
|
2023-01-26 08:05:00 +00:00
|
|
|
[Obsolete("This is no longer set")]
|
|
|
|
public string OperatingSystem { get; set; } = string.Empty;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the id.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The id.</value>
|
|
|
|
public string Id { get; set; }
|
2020-09-05 15:20:58 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2020-09-06 20:27:31 +00:00
|
|
|
/// Gets or sets a value indicating whether the startup wizard is completed.
|
2020-09-05 15:20:58 +00:00
|
|
|
/// </summary>
|
2020-10-11 15:01:33 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Nullable for OpenAPI specification only to retain backwards compatibility in apiclients.
|
|
|
|
/// </remarks>
|
|
|
|
/// <value>The startup completion status.</value>]
|
|
|
|
public bool? StartupWizardCompleted { get; set; }
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
2019-01-13 19:31:15 +00:00
|
|
|
}
|