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

12 lines
339 B
C#

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