ff-admin-server/src/command/userCommand.ts

8 lines
134 B
TypeScript
Raw Normal View History

export interface CreateUserCommand {
mail: string;
username: string;
2024-08-25 11:36:19 +00:00
firstname: string;
lastname: string;
secret: string;
}