13 lines
273 B
C#
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();
|
|
}
|
|
}
|