using FluentValidation; namespace ExpenseTracker.Application.Authentication.Commands.RevokeRefreshTokenWithBody; public class RevokeRefreshTokenWithBodyCommandValidator : AbstractValidator { public RevokeRefreshTokenWithBodyCommandValidator() { RuleFor(v => v.RefreshToken).NotEmpty(); } }