Files

10 lines
217 B
C#
Raw Permalink Normal View History

2026-02-05 23:51:49 +01:00
using MediatR;
namespace TimetableDesigner.Backend.Services.Authentication.Core.Commands.AuthToken;
public record AuthTokenCommand
(
string AccessToken,
string RefreshToken
)
: IRequest<AuthTokenResult>;