export interface YieldProduct {
    product_title: string;
    product_id: number;
    description: string;
    min_yield_time: string;
    type: string;
    last_change: number;
}
