export type ReferralCodeEntity = {
    id: bigint;
    code: string;
    pda: string;
    owner_id: number;
};
export default ReferralCodeEntity;
