Kyoo/Kyoo.Common/Models/CollectionLink.cs
2020-05-08 02:21:59 +02:00

21 lines
458 B
C#

namespace Kyoo.Models
{
public class CollectionLink
{
public long ID { get; set; }
public long? CollectionID { get; set; }
public virtual Collection Collection { get; set; }
public long ShowID { get; set; }
public virtual Show Show { get; set; }
public CollectionLink() { }
public CollectionLink(Collection collection, Show show)
{
Collection = collection;
CollectionID = collection.ID;
Show = show;
ShowID = show.ID;
}
}
}