Commit df84512cfa5f1703da8d405937f691a3fd539e54
1 parent
986aef1264
Exists in
master
and in
1 other branch
linea al final
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/app/wrappers/categoria.ts
| 1 | export interface Categoria { | 1 | export interface Categoria { |
| 2 | id: number, | 2 | id: number, |
| 3 | detalle: string, | 3 | detalle: string, |
| 4 | es_promocion: boolean, | 4 | es_promocion: boolean, |
| 5 | vigencia_desde: Date, | 5 | vigencia_desde: Date, |
| 6 | vigencia_hasta: Date, | 6 | vigencia_hasta: Date, |
| 7 | ES_PEDIDO: boolean | 7 | ES_PEDIDO: boolean |
| 8 | } | ||
| 8 | } |