classlib/ExpenseTracker.Application/Authentication/Commands/RevokeRefreshTokenWithBody/RevokeRefreshTokenWithBodyCommandValidator.cs
2024-08-07 21:12:02 +03:00

12 lines
347 B
C#

using FluentValidation;
namespace ExpenseTracker.Application.Authentication.Commands.RevokeRefreshTokenWithBody;
public class RevokeRefreshTokenWithBodyCommandValidator : AbstractValidator<RevokeRefreshTokenWithBodyCommand>
{
public RevokeRefreshTokenWithBodyCommandValidator()
{
RuleFor(v => v.RefreshToken).NotEmpty();
}
}