From 249dd675918a2b59e68dfc4588ddf1325dd4a57f Mon Sep 17 00:00:00 2001 From: faris Aljohari <83524184+farisaljohari@users.noreply.github.com> Date: Wed, 3 Apr 2024 15:07:00 +0300 Subject: [PATCH] Add totalCount field to CommunityChildInterface --- src/community/interface/community.interface.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/community/interface/community.interface.ts b/src/community/interface/community.interface.ts index b0f491e..7f769d3 100644 --- a/src/community/interface/community.interface.ts +++ b/src/community/interface/community.interface.ts @@ -10,5 +10,6 @@ export interface CommunityChildInterface { uuid: string; name: string; type: string; + totalCount?: number; children?: CommunityChildInterface[]; }