Files
full-stack-fastapi/frontend/src/interfaces/index.ts
2024-03-07 16:35:33 +00:00

24 lines
464 B
TypeScript

export interface IUserProfile {
email: string;
is_active: boolean;
is_superuser: boolean;
full_name: string;
id: number;
}
export interface IUserProfileUpdate {
email?: string;
full_name?: string;
password?: string;
is_active?: boolean;
is_superuser?: boolean;
}
export interface IUserProfileCreate {
email: string;
full_name?: string;
password?: string;
is_active?: boolean;
is_superuser?: boolean;
}