start authorization module

This commit is contained in:
Gsk54
2023-01-16 17:04:43 +01:00
parent d5be05585d
commit c832d69c2e
6 changed files with 27 additions and 4 deletions

View File

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