autobus-api_old/AutobusApi.Application/Identity/Commands/RevokeRefreshToken/RevokeRefreshTokenCommandValidator.cs
2023-11-15 19:00:34 +02:00

13 lines
318 B
C#

using FluentValidation;
namespace AutobusApi.Application.Identity.Commands.RevokeRefreshToken;
public class RevokeRefreshTokenCommandValidator : AbstractValidator<RevokeRefreshTokenCommand>
{
public RevokeRefreshTokenCommandValidator()
{
RuleFor(v => v.RefreshToken)
.NotEmpty();
}
}