2024-03-12 13:20:17 +07:00
|
|
|
interface DataOption {
|
|
|
|
|
id: string;
|
|
|
|
|
label: string;
|
|
|
|
|
}
|
2024-05-02 15:12:10 +07:00
|
|
|
interface FormProfile {
|
|
|
|
|
id: string;
|
|
|
|
|
avatar: string;
|
|
|
|
|
fullName: string;
|
|
|
|
|
position: string;
|
|
|
|
|
positionLevel: string;
|
|
|
|
|
organization: string;
|
|
|
|
|
}
|
2024-03-12 13:20:17 +07:00
|
|
|
|
2024-05-02 15:12:10 +07:00
|
|
|
export type { DataOption, FormProfile };
|