Files
SerpentRace/SerpentRace_Backend/src/Application/User/commands/CreateUserCommand.ts
T
2025-09-29 13:45:25 +02:00

11 lines
183 B
TypeScript

export interface CreateUserCommand {
username: string;
password: string;
email: string;
fname: string;
lname: string;
code?: string;
orgid?: string;
phone?: string;
}