2
0

MediaPathInfo.cs 376 B

1234567891011121314151617181920
  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. }
  17. }