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

23 lines
573 B
TypeScript
Raw Normal View History

import { BaseModel } from '../base.model';
/**
* Representation of a motion category. Has the nested property "File"
* @ignore
*/
export class MotionCommentSection extends BaseModel {
public id: number;
public name: string;
public read_groups_id: number[];
public write_groups_id: number[];
public constructor(input?: any) {
super('motions/motion-comment-section', input);
}
public toString(): string {
return this.name;
}
}
BaseModel.registerCollectionElement('motions/motion-comment-section', MotionCommentSection);