using MediatR; namespace AutobusApi.Application.Identity.Commands.RevokeRefreshToken; public record RevokeRefreshTokenCommand : IRequest { public required string RefreshToken { get; set; } }