mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-03 19:17:16 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			262 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			262 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace Kyoo.Models
 | 
						|
{
 | 
						|
	public class CollectionLink
 | 
						|
	{
 | 
						|
		public long ID { get; set; }
 | 
						|
		public long? CollectionID { get; set; }
 | 
						|
		public virtual Collection Collection { get; set; }
 | 
						|
		public long ShowID { get; set; }
 | 
						|
		public virtual Show Show { get; set; }
 | 
						|
	}
 | 
						|
} |