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