2019-02-26 14:43:51 +01:00
|
|
|
export interface MotionTitleInformation {
|
2019-02-21 12:34:13 +01:00
|
|
|
title: string;
|
|
|
|
identifier?: string;
|
2019-02-26 14:43:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface MotionBlockSlideMotionRepresentation extends MotionTitleInformation {
|
2019-02-21 12:34:13 +01:00
|
|
|
recommendation?: {
|
|
|
|
name: string;
|
|
|
|
css_class: string;
|
|
|
|
};
|
|
|
|
recommendation_extension?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface MotionBlockSlideData {
|
|
|
|
title: string;
|
|
|
|
motions: MotionBlockSlideMotionRepresentation[];
|
2019-02-26 14:43:51 +01:00
|
|
|
referenced_motions: { [id: number]: MotionTitleInformation };
|
2019-02-21 12:34:13 +01:00
|
|
|
}
|