export interface IHomeProductionPageInfo {
    endCursor: string;
    hasNextPage: boolean;
    hasPreviousPage: boolean;
    startCursor: string;
    count: number;
    currency: string;
    totalProfit: number;
    totalProduction: number;
    filtered: number;
}
