Add totalCount field to CommunityChildInterface

This commit is contained in:
faris Aljohari
2024-04-03 15:07:00 +03:00
parent cb6ec0e278
commit 249dd67591

View File

@ -10,5 +10,6 @@ export interface CommunityChildInterface {
uuid: string;
name: string;
type: string;
totalCount?: number;
children?: CommunityChildInterface[];
}