summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/shared/services/user/user.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/shared/services/user/user.ts')
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/shared/services/user/user.ts24
1 files changed, 24 insertions, 0 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/shared/services/user/user.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/shared/services/user/user.ts
new file mode 100644
index 00000000..41239361
--- /dev/null
+++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/shared/services/user/user.ts
@@ -0,0 +1,24 @@
+
+export class User{
+ public userName: string;
+ public firstName:string;
+ public userId:string;
+ public userEmail:any;
+ public portalUrl:any;
+ public getAccessUrl:any;
+ public isAppCentralized:any;
+ public contactUsLink:any;
+ public lastName : string;
+
+ constructor(userInfo:any){
+ this.contactUsLink= userInfo.contactUsLink;
+ this.userName = userInfo.userName;
+ this.userId = userInfo.userid;
+ this.userEmail = userInfo.email;
+ this.firstName = userInfo.firstName;
+ this.portalUrl = userInfo.portalUrl;
+ this.getAccessUrl = userInfo.getAccessUrl;
+ this.isAppCentralized = userInfo.isAppCentralized;
+ this.lastName = userInfo.lastName;
+ }
+}