interface AdminCategory {
    id: number;
    name: string;
    slug: string;
    description: string;
    image: null | string;
    parent: null | number;
    is_active: boolean;
    sort_order: number;
    level: number;
    full_path: string;
    product_count: number;
    children: AdminCategory[];
    created_at: string;
    updated_at: string;
}

Properties

id: number
name: string
slug: string
description: string
image: null | string
parent: null | number
is_active: boolean
sort_order: number
level: number
full_path: string
product_count: number
children: AdminCategory[]
created_at: string
updated_at: string