mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
18 lines
321 B
C#
18 lines
321 B
C#
namespace Kyoo.Models
|
|
{
|
|
public class GenreLink
|
|
{
|
|
public int ShowID { get; set; }
|
|
public virtual Show Show { get; set; }
|
|
public int GenreID { get; set; }
|
|
public virtual Genre Genre { get; set; }
|
|
|
|
public GenreLink() {}
|
|
|
|
public GenreLink(Show show, Genre genre)
|
|
{
|
|
Show = show;
|
|
Genre = genre;
|
|
}
|
|
}
|
|
} |