11 lines
236 B
C#
11 lines
236 B
C#
|
|
using MediatR;
|
|||
|
|
|
|||
|
|
namespace TimetableDesigner.Backend.Services.Authentication.Core.Commands.AuthPassword;
|
|||
|
|
|
|||
|
|
public record AuthPasswordCommand
|
|||
|
|
(
|
|||
|
|
string Email,
|
|||
|
|
string Password,
|
|||
|
|
bool RememberMe
|
|||
|
|
)
|
|||
|
|
: IRequest<AuthPasswordResult>;
|