// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Model.Entities; using global::System.Collections.Generic; /// /// Since BaseItem and DTOBaseItem both have ProviderIds, this interface helps avoid code repetition by using extension methods. /// public interface IHasProviderIds { /// /// Gets or sets the provider ids. /// /// The provider ids. Dictionary ProviderIds { get; set; } }