#nullable disable #pragma warning disable CS1591 using System; 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 name of the server. /// /// The name of the server. public string ServerName { get; set; } /// /// Gets or sets the server version. /// /// The version. public string Version { get; set; } /// /// Gets or sets the product name. This is the AssemblyProduct name. /// public string ProductName { get; set; } /// /// Gets or sets the operating system. /// /// The operating system. [Obsolete("This is no longer set")] public string OperatingSystem { get; set; } = string.Empty; /// /// Gets or sets the id. /// /// The id. public string Id { get; set; } /// /// Gets or sets a value indicating whether the startup wizard is completed. /// /// /// Nullable for OpenAPI specification only to retain backwards compatibility in apiclients. /// /// The startup completion status.] public bool? StartupWizardCompleted { get; set; } } }