From b21e16f21518a61fb66783b516a6d0643df7dc51 Mon Sep 17 00:00:00 2001 From: "DESKTOP-2S5P7D1\\Windows 10" Date: Tue, 12 Nov 2024 13:59:05 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=81=E0=B8=A3=E0=B8=A3=E0=B8=A1=E0=B8=81?= =?UTF-8?q?=E0=B8=B2=E0=B8=A3=20null=20=E0=B9=84=E0=B8=94=E0=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/entities/Appoint.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/entities/Appoint.ts b/src/entities/Appoint.ts index ed4a268..491d765 100644 --- a/src/entities/Appoint.ts +++ b/src/entities/Appoint.ts @@ -52,13 +52,13 @@ export class CreateAppoint { export type Person = { profileId: string - name?: string - position?: string - positionType?: string - positionLevel?: string - role?: string - posNo?: string - actFullName?: string + name?: string | null + position?: string | null + positionType?: string | null + positionLevel?: string | null + role?: string | null + posNo?: string | null + actFullName?: string | null } export class UpdateAppoint {