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

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