Commit 5413051fb88bbb21f1df6aa4ab6e4bd49456fbe8

Authored by Marcelo Puebla
1 parent 44888c3b88
Exists in master

Creada interfaz.

Showing 1 changed file with 7 additions and 0 deletions   Show diff stats
src/app/wrappers/promocion.ts
... ... @@ -0,0 +1,7 @@
  1 +import { Producto } from './producto';
  2 +
  3 +export interface Promocion {
  4 + idPromo: number;
  5 + nombrePromo: string;
  6 + productos: Producto[];
  7 +}
0 8 \ No newline at end of file