user/.old/commands/delete-user.command.ts

8 lines
117 B
TypeScript

export class DeleteUserCommand {
readonly uuid: string;
constructor(uuid: string) {
this.uuid = uuid;
}
}