This commit is contained in:
2026-07-09 09:35:22 +03:00
parent a79db30ea9
commit 147b774e44
9 changed files with 99 additions and 103 deletions
+7
View File
@@ -0,0 +1,7 @@
export interface Folder {
name: string;
id: string;
totalCount: number;
unreadCount: number;
childFolderCount: number;
}