mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			488 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			488 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
using API.DTOs.Account;
 | 
						|
 | 
						|
namespace API.DTOs;
 | 
						|
#nullable enable
 | 
						|
 | 
						|
public class UserDto
 | 
						|
{
 | 
						|
    public string Username { get; init; } = null!;
 | 
						|
    public string Email { get; init; } = null!;
 | 
						|
    public string Token { get; set; } = null!;
 | 
						|
    public string? RefreshToken { get; set; }
 | 
						|
    public string? ApiKey { get; init; }
 | 
						|
    public UserPreferencesDto? Preferences { get; set; }
 | 
						|
    public AgeRestrictionDto? AgeRestriction { get; init; }
 | 
						|
    public string KavitaVersion { get; set; }
 | 
						|
}
 |