MediaPathInfo.cs 230 B

123456789101112
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. namespace MediaBrowser.Model.Configuration
  4. {
  5. public class MediaPathInfo
  6. {
  7. public string Path { get; set; }
  8. public string NetworkPath { get; set; }
  9. }
  10. }