PublicSystemInfo.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using System;
  4. namespace MediaBrowser.Model.System
  5. {
  6. public class PublicSystemInfo
  7. {
  8. /// <summary>
  9. /// Gets or sets the local address.
  10. /// </summary>
  11. /// <value>The local address.</value>
  12. public string LocalAddress { get; set; }
  13. /// <summary>
  14. /// Gets or sets the name of the server.
  15. /// </summary>
  16. /// <value>The name of the server.</value>
  17. public string ServerName { get; set; }
  18. /// <summary>
  19. /// Gets or sets the server version.
  20. /// </summary>
  21. /// <value>The version.</value>
  22. public string Version { get; set; }
  23. /// <summary>
  24. /// Gets or sets the product name. This is the AssemblyProduct name.
  25. /// </summary>
  26. public string ProductName { get; set; }
  27. /// <summary>
  28. /// Gets or sets the operating system.
  29. /// </summary>
  30. /// <value>The operating system.</value>
  31. [Obsolete("This is no longer set")]
  32. public string OperatingSystem { get; set; } = string.Empty;
  33. /// <summary>
  34. /// Gets or sets the id.
  35. /// </summary>
  36. /// <value>The id.</value>
  37. public string Id { get; set; }
  38. /// <summary>
  39. /// Gets or sets a value indicating whether the startup wizard is completed.
  40. /// </summary>
  41. /// <remarks>
  42. /// Nullable for OpenAPI specification only to retain backwards compatibility in api clients.
  43. /// </remarks>
  44. /// <value>The startup completion status.</value>]
  45. public bool? StartupWizardCompleted { get; set; }
  46. }
  47. }