Gitiles
Code Review
Sign In
gerrit.nordix.org
/
onap
/
vid
/
c6a37b4d2f2fc7446340e4bb475328069c9dbed4
/
.
/
vid-webpack-master
/
src
/
app
/
shared
/
models
/
lcpRegion.ts
blob: e39321d58b94357db95292a641933d4396e81613 [
file
] [
log
] [
blame
]
export
class
LcpRegion
{
id
:
string
;
name
:
string
;
isPermitted
:
boolean
;
constructor
(
serviceJson
){
this
.
id
=
serviceJson
[
"cloudRegionID"
];
this
.
name
=
serviceJson
[
"cloudRegionID"
];
this
.
isPermitted
=
serviceJson
[
"is-permitted"
];
}
}