mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
21 lines
455 B
C#
21 lines
455 B
C#
namespace Kyoo.Models
|
|
{
|
|
public class CollectionLink
|
|
{
|
|
public int ID { get; set; }
|
|
public int? CollectionID { get; set; }
|
|
public virtual Collection Collection { get; set; }
|
|
public int 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;
|
|
}
|
|
}
|
|
} |