EpisodeInfo.cs 477 B

123456789101112131415161718
  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 EpisodeInfo()
  11. {
  12. SeriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
  13. }
  14. }
  15. }