mirror of
https://github.com/azaion/admin.git
synced 2026-04-22 05:26:34 +00:00
88c7b288df
Made-with: Cursor
23 lines
892 B
C#
23 lines
892 B
C#
using Azaion.Common.Entities;
|
|
using FluentValidation;
|
|
|
|
namespace Azaion.Common.Requests;
|
|
|
|
public class RegisterUserRequest
|
|
{
|
|
public string Email { get; set; } = null!;
|
|
public string Password { get; set; } = null!;
|
|
public RoleEnum Role { get; set; }
|
|
}
|
|
|
|
public class RegisterUserValidator : AbstractValidator<RegisterUserRequest>
|
|
{
|
|
public RegisterUserValidator()
|
|
{
|
|
RuleFor(r => r.Email)
|
|
.MinimumLength(8).WithErrorCode(ExceptionEnum.EmailLengthIncorrect.ToString()).WithMessage("Email address should be at least 8 characters.")
|
|
.EmailAddress().WithErrorCode(ExceptionEnum.WrongEmail.ToString()).WithMessage("Email address is not valid.");
|
|
|
|
RuleFor(r => r.Password)
|
|
.MinimumLength(12).WithErrorCode(ExceptionEnum.PasswordLengthIncorrect.ToString()).WithMessage("Password should be at least 12 characters.");
|
|
} } |