diff options
Diffstat (limited to 'catalog-ui/src/app/models/radio-button.ts')
-rw-r--r-- | catalog-ui/src/app/models/radio-button.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/catalog-ui/src/app/models/radio-button.ts b/catalog-ui/src/app/models/radio-button.ts new file mode 100644 index 0000000000..e907b26bce --- /dev/null +++ b/catalog-ui/src/app/models/radio-button.ts @@ -0,0 +1,11 @@ +/** + * 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; + } +} |