OpenSlides/client/src/app/shared/models/motions/motion-log.ts
FinnStutzenstein 1ee76de417 Handling of titles, projection and content objects in items
Restructure the titles for motion, motion-block, assignment and topic.
Less possibilities for more clear code. Added mote base models enabling
functionalities of projection and being a content object for items
2018-09-14 08:36:35 +02:00

18 lines
344 B
TypeScript

import { Deserializer } from '../base/deserializer';
/**
* Representation of a Motion Log.
*
* @ignore
*/
export class MotionLog extends Deserializer {
public message_list: string[];
public person_id: number;
public time: string;
public message: string;
public constructor(input?: any) {
super(input);
}
}