using System.Collections.Generic; namespace MediaBrowser.Model.Entities { /// /// Since BaseItem and DTOBaseItem both have ProviderIds, this interface helps avoid code repition by using extension methods /// public interface IHasProviderIds { /// /// Gets or sets the provider ids. /// /// The provider ids. Dictionary ProviderIds { get; set; } } }