13 lines
310 B
C#
13 lines
310 B
C#
using FluentValidation;
|
|
|
|
namespace AutobusApi.Application.Identity.Commands.RenewAccessToken;
|
|
|
|
public class RenewAccessTokenCommandValidator : AbstractValidator<RenewAccessTokenCommand>
|
|
{
|
|
public RenewAccessTokenCommandValidator()
|
|
{
|
|
RuleFor(v => v.RefreshToken)
|
|
.NotEmpty();
|
|
}
|
|
}
|