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