EpisodeInfo.cs 535 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 bool IsMissingEpisode { get; set; }
  10. public string SeriesDisplayOrder { get; set; }
  11. public EpisodeInfo()
  12. {
  13. SeriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
  14. }
  15. }
  16. }