diff --git a/src/app/interfaces/ISinonimo.ts b/src/app/interfaces/ISinonimo.ts new file mode 100644 index 0000000..7c042e0 --- /dev/null +++ b/src/app/interfaces/ISinonimo.ts @@ -0,0 +1,9 @@ +import { IArticulo } from './IArticulo'; + +export interface ISinonimo { + ID_SIN: number; + descripcion: string; + productos: IArticulo[]; + productoPadre?: number; + cantidad?: number; +}