Files
fcs/lib/domain/entities/carton_size.dart
Thinzar Win 230e6f9e66 add FCS UI
2020-12-01 19:02:21 +06:30

9 lines
173 B
Dart

class CartonSize {
String id;
String name;
double length;
double width;
double height;
CartonSize({this.id, this.name, this.length, this.width, this.height});
}