Project

General

Profile

1
export class UserNotificationsRights {
2
  notifyForNewManagers: boolean;
3
  notifyForNewSubscribers: boolean;
4
  managerEmail: string;
5
  constructor (notifyForNewManagers: boolean = true, notifyForNewSubscribers: boolean = true, managerEmail: string = null ){
6
    this.notifyForNewManagers = notifyForNewManagers;
7
    this.notifyForNewSubscribers = notifyForNewSubscribers;
8
    this.managerEmail = managerEmail;
9
  }
10
}
(6-6/6)