Merge branch 'develop' into adiDev

This commit is contained in:
AdisakKanthawilang 2024-06-21 18:07:13 +07:00
commit 5a634b4dd3
3 changed files with 75 additions and 6 deletions

View file

@ -86,12 +86,12 @@ export class ProfileChildren extends EntityBase {
export type CreateProfileChildren = {
profileId: string;
childrenCareer: string;
childrenFirstName: string;
childrenLastName: string;
childrenPrefix: string;
childrenLive: boolean;
childrenCitizenId: string;
childrenCareer: string | null;
childrenFirstName: string | null;
childrenLastName: string | null;
childrenPrefix: string | null;
childrenLive: boolean | null;
childrenCitizenId: string | null;
};
export type CreateProfileChildrenEmployee = {