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