import { IPagBankPhone } from "./i-phone";
export interface IPagBankCustomer {
    nome: string;
    email: string;
    tax_id: string;
    phone: IPagBankPhone[];
}
