10 lines
205 B
C#
10 lines
205 B
C#
|
|
using MediatR;
|
|||
|
|
|
|||
|
|
namespace TimetableDesigner.Backend.Services.Authentication.Core.Commands.Register;
|
|||
|
|
|
|||
|
|
public record RegisterCommand
|
|||
|
|
(
|
|||
|
|
string Email,
|
|||
|
|
string Password
|
|||
|
|
)
|
|||
|
|
: IRequest<RegisterResult>;
|