promocion.ts 138 Bytes
import { Producto } from './producto';

export interface Promocion {
  idPromo: number;
  nombrePromo: string;
  productos: Producto[];
}