PublicSystemInfo.cs 1.3 KB

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