Skip to content
Snippets Groups Projects
Commit 11488a5c authored by Lukas Mauß's avatar Lukas Mauß
Browse files

Replace class which is already defined in models

parent 8bcc367a
No related merge requests found
......@@ -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',
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment