Files
fcs/lib/domain/entities/carton_size.dart

9 lines
173 B
Dart
Raw Normal View History

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