Gitiles
Code Review
Sign In
gerrit.nordix.org
/
onap
/
sdc
/
6187c942bedebeb2f452ed0856652f90cd5c5772
/
.
/
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
;
}
}