export class UsuarioTarjetaViewModel { id: string; tarjeta: string; plataforma: string; fechaAlta: Date; estado: string; constructor(id: string, tarjeta: string, plataforma: string, fechaAlta: Date, estado: string) { this.id = id, this.tarjeta = tarjeta this.plataforma = plataforma this.fechaAlta = fechaAlta this.estado = estado } }