SeasonInfo.cs 375 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Controller.Providers
  4. {
  5. public class SeasonInfo : ItemLookupInfo
  6. {
  7. public Dictionary<string, string> SeriesProviderIds { get; set; }
  8. public SeasonInfo()
  9. {
  10. SeriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
  11. }
  12. }
  13. }