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

18 lines
344 B
TypeScript
Raw Normal View History

import { Deserializer } from '../base/deserializer';
2018-08-08 17:25:39 +02:00
/**
* Representation of a Motion Log.
2018-08-08 17:25:39 +02:00
*
* @ignore
*/
export class MotionLog extends Deserializer {
2018-08-29 13:21:25 +02:00
public message_list: string[];
public person_id: number;
public time: string;
public message: string;
2018-08-08 17:25:39 +02:00
2018-09-04 11:33:28 +02:00
public constructor(input?: any) {
super(input);
2018-08-08 17:25:39 +02:00
}
}