mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-04 03:27:14 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			585 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			585 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace Kyoo.Models
 | 
						|
{
 | 
						|
	public class LibraryLink
 | 
						|
	{
 | 
						|
		public int ID { get; set; }
 | 
						|
		public int LibraryID { get; set; }
 | 
						|
		public virtual Library Library { get; set; }
 | 
						|
		public int? ShowID { get; set; }
 | 
						|
		public virtual Show Show { get; set; }
 | 
						|
		public int? CollectionID { get; set; }
 | 
						|
		public virtual Collection Collection { get; set; }
 | 
						|
 | 
						|
		public LibraryLink() { }
 | 
						|
 | 
						|
		public LibraryLink(Library library, Show show)
 | 
						|
		{
 | 
						|
			Library = library;
 | 
						|
			Show = show;
 | 
						|
		}
 | 
						|
 | 
						|
		public LibraryLink(Library library, Collection collection)
 | 
						|
		{
 | 
						|
			Library = library;
 | 
						|
			Collection = collection;
 | 
						|
		}
 | 
						|
	}
 | 
						|
} |