Files
marketplaces/src/app/models/category.model.ts
2026-01-18 18:57:06 +04:00

7 lines
105 B
TypeScript

export interface Category {
categoryID: number;
name: string;
parentID: number;
icon?: string;
}