import { Comprador } from './Comprador';
export interface Compradores {
    Comprador?: Array<Comprador>;
}
