import { BaseEntity } from "@cv/system"; export class Credentials extends BaseEntity { constructor( id: string, public userId: string, public email: string, public password: string, createdAt: Date, updatedAt: Date, public emailVerifiedAt: Date | null = null, public emailVerificationToken: string | null = null, public emailVerificationTokenExpiresAt: Date | null = null, public passwordResetToken: string | null = null, public passwordResetTokenExpiresAt: Date | null = null, ) { super(id, createdAt, updatedAt); } }