MediaPathInfo.cs 301 B

12345678910111213141516
  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. public string Path { get; set; }
  11. public string? NetworkPath { get; set; }
  12. }
  13. }