14 lines
355 B
TypeScript
14 lines
355 B
TypeScript
|
import { Motion } from 'app/shared/models/motions/motion';
|
||
|
|
||
|
/**
|
||
|
* Representation of Motion during creation. The submitters_id is added to send this information
|
||
|
* as an array of user ids to the server.
|
||
|
*/
|
||
|
export class CreateMotion extends Motion {
|
||
|
public submitters_id: number[];
|
||
|
|
||
|
public constructor(input?: any) {
|
||
|
super(input);
|
||
|
}
|
||
|
}
|