1ee76de417
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
22 lines
542 B
TypeScript
22 lines
542 B
TypeScript
import { Deserializer } from '../base/deserializer';
|
|
|
|
/**
|
|
* Content of the 'assignment_related_users' property
|
|
* @ignore
|
|
*/
|
|
export class AssignmentUser extends Deserializer {
|
|
public id: number;
|
|
public user_id: number;
|
|
public elected: boolean;
|
|
public assignment_id: number;
|
|
public weight: number;
|
|
|
|
/**
|
|
* Needs to be completely optional because assignment has (yet) the optional parameter 'assignment_related_users'
|
|
* @param input
|
|
*/
|
|
public constructor(input?: any) {
|
|
super(input);
|
|
}
|
|
}
|