mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-09-29 15:30:53 -04:00
16 lines
462 B
C#
16 lines
462 B
C#
using System.Collections.Generic;
|
|
using Kyoo.Models.Attributes;
|
|
|
|
namespace Kyoo.Models
|
|
{
|
|
/// <summary>
|
|
/// An interface applied to resources containing external metadata.
|
|
/// </summary>
|
|
public interface IMetadata
|
|
{
|
|
/// <summary>
|
|
/// The link to metadata providers that this show has. See <see cref="MetadataID"/> for more information.
|
|
/// </summary>
|
|
[EditableRelation] [LoadableRelation] public ICollection<MetadataID> ExternalIDs { get; set; }
|
|
}
|
|
} |