connect-admin/src/app/pages/usernotifications/userNotificationsRights.ts

11 lines
415 B
TypeScript

export class UserNotificationsRights {
notifyForNewManagers: boolean;
notifyForNewSubscribers: boolean;
managerEmail: string;
constructor (notifyForNewManagers: boolean = true, notifyForNewSubscribers: boolean = true, managerEmail: string = null ){
this.notifyForNewManagers = notifyForNewManagers;
this.notifyForNewSubscribers = notifyForNewSubscribers;
this.managerEmail = managerEmail;
}
}