export interface GetRestrictedCategoriesInterface {
    success: boolean,
    data: [
        {
            category_id: number,
            title: string
        }
    ],
}
