mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			320 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			320 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace API.Entities;
 | 
						|
 | 
						|
public class AppUserExternalSource
 | 
						|
{
 | 
						|
    public int Id { get; set; }
 | 
						|
    public required string Name { get; set; }
 | 
						|
    public required string Host { get; set; }
 | 
						|
    public required string ApiKey { get; set; }
 | 
						|
 | 
						|
    public int AppUserId { get; set; }
 | 
						|
    public AppUser AppUser { get; set; }
 | 
						|
}
 |