EpisodeInfo.cs 586 B

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