Files
fcs/lib/domain/vo/local_step.dart
2024-02-01 18:07:40 +06:30

8 lines
182 B
Dart

enum StepType { TYPE, CARTONS, SIZE, PACKAGES, CARGOS, SUBMIT }
class LocalStep {
String lable;
StepType stepType;
LocalStep({required this.lable, required this.stepType});
}