Gitiles
Code Review
Sign In
gerrit.nordix.org
/
onap
/
vid
/
182d036de5a7d64250fc5058f3cf361b9d823282
/
.
/
vid-webpack-master
/
src
/
app
/
shared
/
models
/
pnfInstance.ts
blob: ba3679646ab1b73903de23ad4ec3d881fa3ea9d0 [
file
] [
log
] [
blame
]
import
{
Level1Instance
}
from
"./level1Instance"
;
export
class
PnfInstance
extends
Level1Instance
{
pnfStoreKey
:
string
;
statusMessage
?:
string
;
constructor
()
{
super
();
this
.
pnfStoreKey
=
null
;
}
}