export interface LoyaltyItem {
    id: number;
    order_id: number;
    type: string;
    name: string;
    status: string;
    points: number;
    created_at: number;
    points_expire_date: number;
    key: string;
    status_key: string;
}
