mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-03 19:17:16 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			413 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			413 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace Kyoo.Models
 | 
						|
{
 | 
						|
	public class ProviderLink
 | 
						|
	{
 | 
						|
		public long ID { get; set; }
 | 
						|
		public long ProviderID { get; set; }
 | 
						|
		public virtual ProviderID Provider { get; set; }
 | 
						|
		public long? ShowID { get; set; }
 | 
						|
		public virtual Show Show { get; set; }
 | 
						|
		public long? LibraryID { get; set; }
 | 
						|
		public virtual Library Library { get; set; }
 | 
						|
 | 
						|
		public string Name => Provider.Name;
 | 
						|
		
 | 
						|
		public ProviderLink() { }
 | 
						|
	}
 | 
						|
} |