2
0

NetworkShare.cs 740 B

123456789101112131415161718192021222324252627282930313233
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. namespace MediaBrowser.Model.Net
  4. {
  5. public class NetworkShare
  6. {
  7. /// <summary>
  8. /// The name of the computer that this share belongs to.
  9. /// </summary>
  10. public string Server { get; set; }
  11. /// <summary>
  12. /// Share name.
  13. /// </summary>
  14. public string Name { get; set; }
  15. /// <summary>
  16. /// Local path.
  17. /// </summary>
  18. public string Path { get; set; }
  19. /// <summary>
  20. /// Share type.
  21. /// </summary>
  22. public NetworkShareType ShareType { get; set; }
  23. /// <summary>
  24. /// Comment.
  25. /// </summary>
  26. public string Remark { get; set; }
  27. }
  28. }