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

8 lines
128 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-01-18 18:57:06 +04:00
}