remove post-nominals and add isManager property

master
Matthew 2023-02-11 23:23:45 -05:00
parent 6ffe4c30d8
commit 311462dd80
1 changed files with 3 additions and 3 deletions

View File

@ -13,9 +13,6 @@ export default class Staff {
@prop()
public dept: string;
@prop()
public pn: string[];
@prop()
public emailAddress: string;
@ -27,4 +24,7 @@ export default class Staff {
@prop()
public additionalRoles: string[];
@prop({ default: false })
public isManager: boolean;
}