mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-31 04:04:21 -04:00
21 lines
458 B
C#
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;
|
|
}
|
|
}
|
|
} |