PublicSystemInfo.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. /// Gets or sets the operating sytem.
  27. /// </summary>
  28. /// <value>The operating sytem.</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. }