import { ArchivoLite } from './archivos';

export interface IngresoLite {
  id?: number;
  monto: number;
  frecuencia: number;
  tipo: string;
  detalle: any;
  contrato: string;
  periodo?: 'ANUAL' | 'MENSUAL';
  archivos?: ArchivoLite[];
  montoAnual?: number;
}
