export interface ParticipantsGroup {
    id: number;
    name: string;
    participantsIds: number[];
}
