From c371107ab5f538901bf4fe45f7a2e350430c037a Mon Sep 17 00:00:00 2001 From: Vinit Date: Thu, 9 Nov 2023 22:39:03 +0530 Subject: [PATCH] make type to capital case --- src/types/user.types.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/types/user.types.ts b/src/types/user.types.ts index e958fe7..f06daaa 100644 --- a/src/types/user.types.ts +++ b/src/types/user.types.ts @@ -1,10 +1,10 @@ export interface UserTypes { Id: number; Username: string; - email?: string; - password?: string; - isVerified?: boolean; - isOnboarding?: boolean; - createdAt?: string; - updatedAt?: string; + Email?: string; + Password?: string; + IsVerified?: boolean; + IsOnboarding?: boolean; + CreatedAt?: string; + UpdatedAt?: string; }