mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-31 12:14:46 -04:00
17 lines
413 B
C#
17 lines
413 B
C#
namespace Kyoo.Models
|
|
{
|
|
public class ProviderLink
|
|
{
|
|
public long ID { get; set; }
|
|
public long ProviderID { get; set; }
|
|
public virtual ProviderID Provider { get; set; }
|
|
public long? ShowID { get; set; }
|
|
public virtual Show Show { get; set; }
|
|
public long? LibraryID { get; set; }
|
|
public virtual Library Library { get; set; }
|
|
|
|
public string Name => Provider.Name;
|
|
|
|
public ProviderLink() { }
|
|
}
|
|
} |