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