mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			293 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			293 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.ComponentModel.DataAnnotations;
 | 
						|
 | 
						|
namespace API.DTOs
 | 
						|
{
 | 
						|
    public class ResetPasswordDto
 | 
						|
    {
 | 
						|
        [Required]
 | 
						|
        public string UserName { get; init; }
 | 
						|
        [Required]
 | 
						|
        [StringLength(32, MinimumLength = 6)]
 | 
						|
        public string Password { get; init; }
 | 
						|
    }
 | 
						|
} |