mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-02 05:04:15 -04:00
13 lines
348 B
C#
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; }
|
|
}
|
|
} |