OpenSlides/client/src/app/shared/models/motions/motion-comment-section.ts

21 lines
525 B
TypeScript
Raw Normal View History

import { BaseModel } from '../base/base-model';
/**
* Representation of a motion category. Has the nested property "File"
* @ignore
*/
export class MotionCommentSection extends BaseModel<MotionCommentSection> {
public id: number;
public name: string;
public read_groups_id: number[];
public write_groups_id: number[];
public constructor(input?: any) {
2018-11-07 08:43:48 +01:00
super('motions/motion-comment-section', 'Comment section', input);
}
public getTitle(): string {
return this.name;
}
}