import { Role } from "./role"; export class User { email: string; password: string; firstName?: string; lastName?: string; uniqueid?: number; role?: Role; token?: string; birthdate?: Date; username?: string; address?: string; city?: string; country?: string; phone?: string; gender?: string; }