Commit 5413051fb88bbb21f1df6aa4ab6e4bd49456fbe8

Authored by Marcelo Puebla
1 parent 44888c3b88
Exists in master and in 1 other branch validar_pve

Creada interfaz.

Showing 1 changed file with 7 additions and 0 deletions   Show diff stats
src/app/wrappers/promocion.ts
File was created 1 import { Producto } from './producto';
2
3 export interface Promocion {
4 idPromo: number;
5 nombrePromo: string;
6 productos: Producto[];
7 }