12 lines
230 B
C#
12 lines
230 B
C#
using FluentValidation;
|
|
|
|
namespace ExpenseTracker.Application.Users.Commands.Create;
|
|
|
|
public class CreateUserCommandValidator : AbstractValidator<CreateUserCommand>
|
|
{
|
|
public CreateUserCommandValidator()
|
|
{
|
|
|
|
}
|
|
}
|