9 lines
198 B
C#
9 lines
198 B
C#
using MediatR;
|
|
|
|
namespace AutobusApi.Application.Identity.Commands.RevokeRefreshToken;
|
|
|
|
public record RevokeRefreshTokenCommand : IRequest
|
|
{
|
|
public required string RefreshToken { get; set; }
|
|
}
|