16 lines
340 B
TypeScript
16 lines
340 B
TypeScript
import { Deserializer } from '../deserializer.model';
|
|
|
|
/**
|
|
* Representation of a Motion Comment.
|
|
*/
|
|
export class MotionComment extends Deserializer {
|
|
public id: number;
|
|
public comment: string;
|
|
public section_id: number;
|
|
public read_groups_id: number[];
|
|
|
|
public constructor(input?: any) {
|
|
super(input);
|
|
}
|
|
}
|