BETTERZON-75: Adding backend functions to enable user registration

This commit is contained in:
2021-04-28 21:41:32 +02:00
parent 21d5294a57
commit 820decd8f0
8 changed files with 1003 additions and 38 deletions
@@ -0,0 +1,5 @@
import {User} from './user.interface';
export interface Users {
[key: number]: User;
}