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

8 lines
117 B
TypeScript
Raw Normal View History

2022-12-14 11:49:43 +00:00
export class DeleteUserCommand {
readonly uuid: string;
constructor(uuid: string) {
this.uuid = uuid;
}
}