PublicSystemInfo.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #pragma warning disable CS1591
  2. namespace MediaBrowser.Model.System
  3. {
  4. public class PublicSystemInfo
  5. {
  6. /// <summary>
  7. /// Gets or sets the local address.
  8. /// </summary>
  9. /// <value>The local address.</value>
  10. public string LocalAddress { get; set; }
  11. /// <summary>
  12. /// Gets or sets the name of the server.
  13. /// </summary>
  14. /// <value>The name of the server.</value>
  15. public string ServerName { get; set; }
  16. /// <summary>
  17. /// Gets or sets the server version.
  18. /// </summary>
  19. /// <value>The version.</value>
  20. public string Version { get; set; }
  21. /// <summary>
  22. /// The product name. This is the AssemblyProduct name.
  23. /// </summary>
  24. public string ProductName { get; set; }
  25. /// <summary>
  26. /// Gets or sets the operating system.
  27. /// </summary>
  28. /// <value>The operating system.</value>
  29. public string OperatingSystem { get; set; }
  30. /// <summary>
  31. /// Gets or sets the id.
  32. /// </summary>
  33. /// <value>The id.</value>
  34. public string Id { get; set; }
  35. }
  36. }