This commit is contained in:
Vladimir Voronin
2024-11-06 19:14:53 +03:00
parent 04fae4dec7
commit 9d546f6069
23 changed files with 1008 additions and 108 deletions

8
src/models/User.ts Normal file
View File

@@ -0,0 +1,8 @@
export class User {
id: number;
username: string;
firstName: string;
tgId: number;
isActive: boolean;
regDate: Date;
}