export class PerfilViewModel { uid: string; email: string; cedula: string; celular: string; genero: string; nombre: string; apellido: string; foto: string; estado: string; cumpleanos: Date; codPais: string; nombrePais: string; idCiudad: number; nombreCiudad: string; constructor(uid: string, nombre: string, apellido: string, email: string, cedula: string, celular: string, genero: string, foto: string, estado: string, codPais: string, nombrePais: string, idCiudad: number, nombreCiudad: string, cumpleanos: Date) { this.uid = uid; this.email = email; this.cedula = cedula; this.celular = celular; this.genero = genero; this.nombre = nombre; this.apellido = apellido; this.foto = foto; this.codPais = codPais; this.estado = estado; this.idCiudad = idCiudad; this.cumpleanos = cumpleanos; this.nombrePais = nombrePais; this.nombreCiudad = nombreCiudad; } }