import { Role } from './role.entity'; export declare class User { id: number; /** * User email address for communication and login. */ email: string; password: string; firstName: string; lastName: string; verified: boolean; deleted: boolean; created: Date; createdBy: number; modified: Date; modifiedBy: number; roles: Role[]; }