2
0

ExtraInfo.cs 320 B

123456789101112131415
  1. using MediaBrowser.Model.Entities;
  2. namespace MediaBrowser.Controller.Providers
  3. {
  4. public class ExtraInfo
  5. {
  6. public string Path { get; set; }
  7. public LocationType LocationType { get; set; }
  8. public bool IsDownloadable { get; set; }
  9. public ExtraType ExtraType { get; set; }
  10. }
  11. }