refactor: add data annotations

This commit is contained in:
2024-12-25 05:44:15 +03:00
parent 408a95e4b3
commit 9ff0f51e19
2 changed files with 3 additions and 5 deletions

View File

@ -11,17 +11,20 @@ public class CreateUserRequest
/// Gets or sets the email address of the user.
/// </summary>
[Required]
[EmailAddress]
public required string Email { get; set; }
/// <summary>
/// Gets or sets the username of the user.
/// </summary>
[Required]
[MinLength(2)]
public required string Username { get; set; }
/// <summary>
/// Gets or sets the password of the user.
/// </summary>
[Required]
[MinLength(2)]
public required string Password { get; set; }
}