mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
21 lines
495 B
C#
21 lines
495 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Kyoo.Models
|
|
{
|
|
public class ProviderLink
|
|
{
|
|
[JsonIgnore] public int ID { get; set; }
|
|
[JsonIgnore] public int ProviderID { get; set; }
|
|
[JsonIgnore] public virtual ProviderID Provider { get; set; }
|
|
[JsonIgnore] public int? LibraryID { get; set; }
|
|
[JsonIgnore] public virtual Library Library { get; set; }
|
|
|
|
public ProviderLink() { }
|
|
|
|
public ProviderLink(ProviderID provider, Library library)
|
|
{
|
|
Provider = provider;
|
|
Library = library;
|
|
}
|
|
}
|
|
} |