mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-04 03:27:14 -05: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;
 | 
						|
		}
 | 
						|
	}
 | 
						|
} |