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

6 lines
100 B
Dart

class Custom{
String id;
String productType;
int fee;
Custom({this.productType,this.fee});
}