export interface BuyingGroupListInterface {
    success: boolean,
    data: [
        {
            id: number,
            name: string,
            group: string
        },
    ],
}
