using System.Collections.Generic; using Kyoo.Models.Attributes; namespace Kyoo.Models { /// /// An interface applied to resources containing external metadata. /// public interface IMetadata { /// /// The link to metadata providers that this show has. See for more information. /// [EditableRelation] [LoadableRelation] public ICollection ExternalIDs { get; set; } } }