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