mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			428 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			428 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.ComponentModel.DataAnnotations;
 | 
						|
 | 
						|
namespace API.DTOs.Account;
 | 
						|
 | 
						|
public sealed record ConfirmEmailDto
 | 
						|
{
 | 
						|
    [Required]
 | 
						|
    public string Email { get; set; } = default!;
 | 
						|
    [Required]
 | 
						|
    public string Token { get; set; } = default!;
 | 
						|
    [Required]
 | 
						|
    [StringLength(256, MinimumLength = 6)]
 | 
						|
    public string Password { get; set; } = default!;
 | 
						|
    [Required]
 | 
						|
    public string Username { get; set; } = default!;
 | 
						|
}
 |