delete user

This commit is contained in:
Gsk54
2022-12-14 12:49:43 +01:00
parent c410ad05ee
commit ed09ceea15
6 changed files with 116 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
export class DeleteUserCommand {
readonly uuid: string;
constructor(uuid: string) {
this.uuid = uuid;
}
}