| export class Responsibility { | |
| id: number; | |
| responsibleUser: string; | |
| newResponsibleUser: string; | |
| branchName: string; | |
| isActive: boolean; | |
| username: string = this.responsibleUser; | |
| public constructor(init?: Partial<Responsibility>) { | |
| Object.assign(this, init); | |
| } | |
| } |