categoria.ts 158 Bytes
export interface Categoria {
  id: number,
  detalle: string,
  es_promocion: boolean,
  vigencia_desde: Date,
  vigencia_hasta: Date,
  ES_PEDIDO: boolean
}