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