import { ArchivoLite } from './archivos';
import { ContactoLite } from './contacto';

export interface DeudaLite {
  monto: number;
  tipo: string;
  cuotas: number;
  cuota: number;
  _contactos?: ContactoLite[];
  id?: number;
  archivos?: ArchivoLite[];
}
