Files
fcs/lib/vo/cargo.dart
2020-06-25 16:19:23 +06:30

7 lines
105 B
Dart

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