the first commit

This commit is contained in:
sdarbinyan
2026-01-19 23:17:07 +04:00
commit a1a2a69fd0
52 changed files with 13640 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
export interface Category {
id: string;
name: string;
visible: boolean;
priority: number;
img?: string;
projectId: string;
subcategories?: Subcategory[];
}
export interface Subcategory {
id: string;
name: string;
visible: boolean;
priority: number;
img?: string;
categoryId: string;
itemCount?: number;
}