main project split, authpassword endpoint created
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using MediatR;
|
||||
|
||||
namespace TimetableDesigner.Backend.Services.Authentication.Core.Commands.AuthPassword;
|
||||
|
||||
public record AuthPasswordCommand
|
||||
(
|
||||
string Email,
|
||||
string Password,
|
||||
bool RememberMe
|
||||
)
|
||||
: IRequest<AuthPasswordResult>;
|
||||
Reference in New Issue
Block a user