Kyoo/Kyoo.Common/Models/GenreLink.cs
2020-02-10 02:12:03 +01:00

13 lines
348 B
C#

namespace Kyoo.Models
{
public class GenreLink
{
// TODO Make json serializer ignore this class and only serialize the Genre child.
// TODO include this class in the EF workflows.
public long ShowID { get; set; }
public virtual Show Show { get; set; }
public long GenreID { get; set; }
public virtual Genre Genre { get; set; }
}
}