classlib/ExpenseTracker.Application/Users/Commands/Delete/DeleteUserCommandValidator.cs
2024-08-07 21:12:02 +03:00

13 lines
273 B
C#

using FluentValidation;
namespace ExpenseTracker.Application.Users.Commands.Delete;
public class DeleteUserCommandValidator : AbstractValidator<DeleteUserCommand>
{
public DeleteUserCommandValidator()
{
RuleFor(e => e.Id)
.NotEmpty();
}
}