Files
fcs/lib/vo/custom.dart

6 lines
100 B
Dart
Raw Normal View History

2020-06-29 16:15:25 +06:30
class Custom{
String id;
String productType;
int fee;
Custom({this.productType,this.fee});
}