Kyoo/Kyoo.Common/Models/LibraryLink.cs
2020-02-08 19:09:15 +01:00

16 lines
377 B
C#

using System;
#nullable enable
namespace Kyoo.Models
{
public class LibraryLink
{
public long ID { get; set; }
public long LibraryID { get; set; }
public virtual Library Library { get; set; }
public long? ShowID { get; set; }
public virtual Show Show { get; set; }
public long? CollectionID { get; set; }
public virtual Collection Collection { get; set; }
}
}