IHasProviderIds.cs 490 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.Entities
  3. {
  4. /// <summary>
  5. /// Since BaseItem and DTOBaseItem both have ProviderIds, this interface helps avoid code repetition by using extension methods.
  6. /// </summary>
  7. public interface IHasProviderIds
  8. {
  9. /// <summary>
  10. /// Gets or sets the provider ids.
  11. /// </summary>
  12. /// <value>The provider ids.</value>
  13. Dictionary<string, string> ProviderIds { get; set; }
  14. }
  15. }