Gitiles
Code Review
Sign In
gerrit.nordix.org
/
onap
/
sdc
/
a6fd5e3c0145b6d7fe3d9e77dd2a3d8ba98774b4
/
.
/
catalog-ui
/
src
/
app
/
models
/
radio-button.ts
blob: e907b26bce94840ddbc39e29c57445a94cee7e55 [
file
] [
log
] [
blame
]
/**
* Created by rc2122 on 9/5/2017.
*/
export
class
RadioButtonModel
{
key
:
string
;
value
:
any
;
constructor
(
key
:
string
,
value
:
any
){
this
.
key
=
key
;
this
.
value
=
value
;
}
}