namespace Kyoo.Models { /// /// ID and link of an item on an external provider. /// /// public class MetadataID : Link where T : class, IResource { /// /// The ID of the resource on the external provider. /// public string DataID { get; set; } /// /// The URL of the resource on the external provider. /// public string Link { get; set; } } }