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