This commit is contained in:
Samandar Turgunboyev
2025-12-26 17:21:40 +05:00
parent 388c8bcfd1
commit 1389750ddd
5 changed files with 9 additions and 16 deletions

View File

@@ -1,5 +1,5 @@
export interface UserData {
id: 3;
id: number;
username: string;
first_name: string;
last_name: string;
@@ -21,13 +21,7 @@ export interface UserListRes {
}
export interface UserCreateReq {
id: 3;
username: string;
first_name: string;
last_name: string;
middle_name: null | string;
gender: "M" | "F" | null;
region: null | string;
address: null | string;
created_at: string;
password: string;
is_superuser: boolean;
}