export interface FarmEntity {
    id: number;
    pubkey: string;
    cluster_id: number;
    token_mint_id?: number;
}
export default FarmEntity;
