diff --git a/src/app/components/participant/participant-content-carousel-page/participant-content-carousel-page.component.ts b/src/app/components/participant/participant-content-carousel-page/participant-content-carousel-page.component.ts index 2d24632f7cf769b8fa6e718eec502552428927ed..5959d3cebd7201c9f28e54a5ffa956e3b0ec277b 100644 --- a/src/app/components/participant/participant-content-carousel-page/participant-content-carousel-page.component.ts +++ b/src/app/components/participant/participant-content-carousel-page/participant-content-carousel-page.component.ts @@ -2,18 +2,7 @@ import { Component, OnInit } from '@angular/core'; import { ContentType } from '../../../models/content-type.enum'; import { ContentService } from '../../../services/http/content.service'; import { Content } from '../../../models/content'; - -class ContentGroup { - name: string; - contentIds: string[]; - autoSort: boolean; - - constructor(name: string, contentIds: string[], autoSort: boolean) { - this.name = name; - this.contentIds = contentIds; - this.autoSort = autoSort; - } -} +import { ContentGroup } from '../../../models/content-group'; @Component({ selector: 'app-participant-content-carousel-page',