summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/admin/role-functions/role-function.ts
blob: 9359561de353450d66d30a437d121e9c1380874b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export class RoleFunction {
    public name:string;
    public code:string;
    public type:string;
    public action:string;

     constructor(roleFun:any){
        this.name= roleFun.name;
       this.code = roleFun.code;
       this.type = roleFun.type;
       this.action = roleFun.action;
        }
}