15 lines
299 B
TypeScript
15 lines
299 B
TypeScript
export class User {
|
|
userId: string;
|
|
firstName: string;
|
|
lastName: string;
|
|
username: string;
|
|
email: string;
|
|
profileImageUrl: string;
|
|
lastLoginDateDisplay: Date;
|
|
joinDate: Date;
|
|
role: string; //ROLE_USER, ROLE_ADMIN
|
|
authorities: string[];
|
|
active: boolean;
|
|
notLocked: boolean;
|
|
}
|