9 lines
173 B
Dart
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});
|
|
}
|