You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Entities
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Since BaseItem and DTOBaseItem both have ProviderIds, this interface helps avoid code repetition by using extension methods.
|
|
|
|
/// </summary>
|
|
|
|
public interface IHasProviderIds
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the provider ids.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The provider ids.</value>
|
|
|
|
Dictionary<string, string> ProviderIds { get; set; }
|
|
|
|
}
|
|
|
|
}
|