1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2025-06-21 00:55:17 +00:00

Ready to return advanced info

This commit is contained in:
2019-12-24 19:10:45 +01:00
parent e85bdf8e54
commit 0925b44492
4 changed files with 26 additions and 2 deletions

View File

@ -52,10 +52,16 @@ export interface GroupInfoConstructor {
registrationLevel: GroupRegistrationLevel,
postsCreationLevel: GroupPostsCreationLevel,
logo ?: string,
virtualDirectory ?: string
virtualDirectory ?: string,
timeCreate: number,
description ?: string,
url ?: string,
}
export class GroupInfo implements GroupInfoConstructor {
timeCreate: number;
description?: string;
url?: string;
id: number;
name: string;
membersCount: number;