export class ComercioViewModel { logo: string; count: number; nombre: string; idComercio: number; idSucursal: number; constructor(count: number, id_comercio: number, id_sucursal: number, nombre: string, logo: string) { this.logo = logo; this.nombre = nombre; this.count = count; this.idComercio = id_comercio; this.idSucursal = id_sucursal; } }