gemtrack-backend/src/modules/identity-access/application/commands/register-user/register-user.command.ts

8 lines
139 B
TypeScript

export interface RegisterUserCommand {
tenantId: string;
email: string;
firstName: string;
lastName: string;
password: string;
}