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

7 lines
105 B
Dart

class Cargo {
String type;
int price;
int weight;
Cargo({this.type, this.price, this.weight});
}