Files
fcs/lib/domain/vo/radio.dart
Sai Naw Wun 65dda16fe6 clean up
2020-10-07 02:33:06 +06:30

5 lines
87 B
Dart

class RadioGroup {
String text;
int index;
RadioGroup({this.text, this.index});
}