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