2
0

MediaPathInfo.cs 426 B

12345678910111213141516171819202122
  1. #pragma warning disable CS1591
  2. namespace MediaBrowser.Model.Configuration
  3. {
  4. public class MediaPathInfo
  5. {
  6. public MediaPathInfo(string path)
  7. {
  8. Path = path;
  9. }
  10. // Needed for xml serialization
  11. public MediaPathInfo()
  12. {
  13. Path = string.Empty;
  14. }
  15. public string Path { get; set; }
  16. public string? NetworkPath { get; set; }
  17. }
  18. }