2
0

EpisodeInfo.cs 594 B

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