Commit 6b94f5f7613d291c4cbf553d117a70556ccb1b73
1 parent
921e39f57c
Exists in
develop
Add
Sinonimo interface
Showing
1 changed file
with
9 additions
and
0 deletions
Show diff stats
src/app/interfaces/ISinonimo.ts
File was created | 1 | import { IArticulo } from './IArticulo'; | |
2 | |||
3 | export interface ISinonimo { | ||
4 | ID_SIN: number; | ||
5 | descripcion: string; | ||
6 | productos: IArticulo[]; | ||
7 | productoPadre?: number; | ||
8 | cantidad?: number; | ||
9 | } | ||
10 |