PublicSystemInfo.cs 1.6 KB

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