mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-10-31 10:37:04 -04: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; }
 | |
| }
 |