Type alias GroupDto

GroupDto: Immutable<{
    groupId: string;
    name: string;
    owner: {
        id: string;
    };
    participants: readonly string[];
}>

Generated using TypeDoc