diff --git a/API/DTOs/RegisterDto.cs b/API/DTOs/RegisterDto.cs index b3b43bf1a..bcc93954f 100644 --- a/API/DTOs/RegisterDto.cs +++ b/API/DTOs/RegisterDto.cs @@ -7,7 +7,7 @@ namespace API.DTOs [Required] public string Username { get; init; } [Required] - [StringLength(16, MinimumLength = 4)] + [StringLength(32, MinimumLength = 4)] public string Password { get; init; } public bool IsAdmin { get; init; } }