auth token endpoint added
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using MediatR;
|
||||
|
||||
namespace TimetableDesigner.Backend.Services.Authentication.Core.Commands.AuthToken;
|
||||
|
||||
public record AuthTokenCommand
|
||||
(
|
||||
string AccessToken,
|
||||
string RefreshToken
|
||||
)
|
||||
: IRequest<AuthTokenResult>;
|
||||
Reference in New Issue
Block a user