2019-01-13 20:02:23 +00:00
|
|
|
using System.Collections.Generic;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Entities
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Since BaseItem and DTOBaseItem both have ProviderIds, this interface helps avoid code repition 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; }
|
|
|
|
}
|
|
|
|
}
|