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