This commit is contained in:
NotII
2025-04-08 02:02:54 +01:00
parent d8416a8cba
commit 73507e6ac0
4 changed files with 286 additions and 42 deletions

View File

@@ -1,5 +1,6 @@
export interface Category {
_id: string;
name: string;
parentId?: string
parentId?: string;
order?: number;
}