mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-03 19:17:16 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			498 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			498 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using Newtonsoft.Json;
 | 
						|
 | 
						|
namespace Kyoo.Models
 | 
						|
{
 | 
						|
	public class ProviderLink
 | 
						|
	{
 | 
						|
		[JsonIgnore] public long ID { get; set; }
 | 
						|
		[JsonIgnore] public long ProviderID { get; set; }
 | 
						|
		[JsonIgnore] public virtual ProviderID Provider { get; set; }
 | 
						|
		[JsonIgnore] public long? LibraryID { get; set; }
 | 
						|
		[JsonIgnore] public virtual Library Library { get; set; }
 | 
						|
 | 
						|
		public ProviderLink() { }
 | 
						|
 | 
						|
		public ProviderLink(ProviderID provider, Library library)
 | 
						|
		{
 | 
						|
			Provider = provider;
 | 
						|
			Library = library;
 | 
						|
		}
 | 
						|
	}
 | 
						|
} |