export class RegistroModel { id: string; email: string; cedula: string; nombre: string; apellido: string; telefono: string; contrasena: string; cumpleanos: Date; codCiudad: number; genero: string; fullname: string; estado: string; celular: string; fechaRegistro: Date; foto: string; plataformaOrigen: string; tipoCuenta: string; token: string; plataformaMovil: string; uidCms: string; nota: string; envioMail: string; constructor( id: string, email: string, cedula: string, nombre: string, apellido: string, telefono: string, contrasena: string, cumpleanos: Date, codCiudad: number, genero: string, fullname: string, estado: string, celular: string, fechaRegistro: Date, foto: string, plataformaOrigen: string, tipoCuenta: string, token: string, plataformaMovil: string, uidCms: string, nota: string, envioMail: string ) { this.id = id; this.email = email; this.cedula = cedula; this.nombre = nombre; this.apellido = apellido; this.telefono = telefono; this.contrasena = contrasena; this.cumpleanos = cumpleanos; this.codCiudad = codCiudad; this.genero = genero; this.fullname = fullname; this.estado = estado; this.celular = celular; this.fechaRegistro = fechaRegistro; this.foto = foto; this.plataformaOrigen = plataformaOrigen; this.tipoCuenta = tipoCuenta; this.token = token; this.plataformaMovil = plataformaMovil; this.uidCms = uidCms; this.nota = nota; this.envioMail = envioMail; } }