This commit is contained in:
kittapath 2024-10-01 00:56:57 +07:00
parent d899039b9d
commit 465723e440
3 changed files with 67 additions and 0 deletions

View file

@ -192,6 +192,7 @@ export class CreateProfileDevelopment {
isDevelopment10: boolean | null;
summary?: number | null;
point?: number | null;
developmentProjects?: string[];
}
export class CreateProfileEmployeeDevelopment {
@ -211,6 +212,7 @@ export class CreateProfileEmployeeDevelopment {
isDevelopment10: boolean | null;
summary?: number | null;
point?: number | null;
developmentProjects?: string[];
}
export type UpdateProfileDevelopment = {
@ -229,4 +231,5 @@ export type UpdateProfileDevelopment = {
isDevelopment10: boolean | null;
summary?: number | null;
point?: number | null;
developmentProjects?: string[];
};