PublicSystemInfo.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #pragma warning disable CS1591
  2. #pragma warning disable SA1600
  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. /// 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. }
  37. }