very first commit

This commit is contained in:
sdarbinyan
2026-01-18 18:57:06 +04:00
commit bd80896886
152 changed files with 28211 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
export interface Category {
categoryID: number;
name: string;
parentID: number;
icon?: string;
}