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; }