blob: fc61c1d95f2363a76cf33e160d19e793532c2f29 [file] [log] [blame]
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);
}
}