Files
fcs/lib/domain/vo/local_step.dart

8 lines
182 B
Dart
Raw Normal View History

2024-02-01 18:07:40 +06:30
enum StepType { TYPE, CARTONS, SIZE, PACKAGES, CARGOS, SUBMIT }
class LocalStep {
String lable;
StepType stepType;
LocalStep({required this.lable, required this.stepType});
}