9 lines
224 B
C#
9 lines
224 B
C#
using MediatR;
|
|
|
|
namespace ExpenseTracker.Application.Authentication.Commands.RevokeRefreshTokenWithBody;
|
|
|
|
public record RevokeRefreshTokenWithBodyCommand : IRequest
|
|
{
|
|
public required string RefreshToken { get; set; }
|
|
}
|