8 lines
117 B
TypeScript
8 lines
117 B
TypeScript
|
export class DeleteUserCommand {
|
||
|
readonly uuid: string;
|
||
|
|
||
|
constructor(uuid: string) {
|
||
|
this.uuid = uuid;
|
||
|
}
|
||
|
}
|