mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-20 22:10:35 -04:00
20 lines
482 B
C#
20 lines
482 B
C#
namespace Kyoo.Models
|
|
{
|
|
/// <summary>
|
|
/// ID and link of an item on an external provider.
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
public class MetadataID<T> : Link<T, Provider>
|
|
where T : class, IResource
|
|
{
|
|
/// <summary>
|
|
/// The ID of the resource on the external provider.
|
|
/// </summary>
|
|
public string DataID { get; set; }
|
|
|
|
/// <summary>
|
|
/// The URL of the resource on the external provider.
|
|
/// </summary>
|
|
public string Link { get; set; }
|
|
}
|
|
} |