Files
marketplaces/src/app/models/category.model.ts

9 lines
150 B
TypeScript
Raw Normal View History

2026-01-18 18:57:06 +04:00
export interface Category {
categoryID: number;
name: string;
parentID: number;
icon?: string;
2026-02-14 02:34:11 +04:00
wideBanner?: string;
2026-02-14 20:18:55 +04:00
itemCount?: number;
2026-01-18 18:57:06 +04:00
}