init
This commit is contained in:
@@ -0,0 +1 @@
|
||||
export * from './io';
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
import { IRoleResponse } from '@/shared/catalog/roles';
|
||||
|
||||
export interface IUserRawResponse {
|
||||
mobileNumber: string;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
id: number;
|
||||
role: IRoleResponse;
|
||||
}
|
||||
export interface IUserResponse extends IUserRawResponse {}
|
||||
|
||||
export interface IUserRequest {
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
mobileNumber: string;
|
||||
roleId: number;
|
||||
}
|
||||
Reference in New Issue
Block a user