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