From 6b94f5f7613d291c4cbf553d117a70556ccb1b73 Mon Sep 17 00:00:00 2001 From: Marcelo Puebla Date: Thu, 23 Jan 2020 12:03:51 -0300 Subject: [PATCH] Add Sinonimo interface --- src/app/interfaces/ISinonimo.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/app/interfaces/ISinonimo.ts 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; +} -- 1.9.1