18 lines
340 B
TypeScript
18 lines
340 B
TypeScript
export interface RegisterUserRequest {
|
|
name: string | null;
|
|
email: string | null;
|
|
mobile_number: string | null;
|
|
password: string | null;
|
|
password_confirmation: string | null;
|
|
city: string | null;
|
|
}
|
|
|
|
export interface User {
|
|
id: number;
|
|
name: string;
|
|
email: string;
|
|
mobileNumber: string;
|
|
city: string;
|
|
role: string;
|
|
}
|