EpisodeInfo.cs 580 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Controller.Providers
  4. {
  5. public class EpisodeInfo : ItemLookupInfo
  6. {
  7. public Dictionary<string, string> SeriesProviderIds { get; set; }
  8. public int? IndexNumberEnd { get; set; }
  9. public int? AnimeSeriesIndex { get; set; }
  10. public bool IsMissingEpisode { get; set; }
  11. public bool IsVirtualUnaired { get; set; }
  12. public EpisodeInfo()
  13. {
  14. SeriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
  15. }
  16. }
  17. }