ICategoria.ts 206 Bytes
export interface ICategoria {
  id: number;
  detalle: string;
  es_promocion: boolean;
  vigencia_desde: Date;
  vigencia_hasta: Date;
  ES_PEDIDO: boolean;
  selected?: boolean;
  path_imagen?: string;
}