OpenSlides/client/src/app/shared/models/assignments/assignment-user.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

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);
}
}