Commit 5413051fb88bbb21f1df6aa4ab6e4bd49456fbe8
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
| File was created | 1 | import { Producto } from './producto'; | |
| 2 | |||
| 3 | export interface Promocion { | ||
| 4 | idPromo: number; | ||
| 5 | nombrePromo: string; | ||
| 6 | productos: Producto[]; | ||
| 7 | } |