Interface AdsCategory

interface AdsCategory {
    id: number;
    name: string;
    subcategories: AdsCategory[];
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

id: number

Category ID

name: string

Category name

subcategories: AdsCategory[]

Generated using TypeDoc