mobile_skt/lib/constants/enum.dart

20 lines
438 B
Dart
Raw Normal View History

2024-03-31 17:13:29 +08:00
//ignore_for_file: constant_identifier_names
enum BackActionEnum {
refresh,
}
enum LoginEnum { apple, fastLogin }
2024-03-21 16:22:00 +08:00
2024-03-26 11:35:39 +08:00
class InventoryInOrOutEnum {
static const int In = 0;
static const int Out = 1;
}
2024-03-21 16:22:00 +08:00
2024-03-26 11:35:39 +08:00
class StorageBussinessModuleEnum {
static const Contract = 'contract';
static const Company = 'company';
static const MaterialsInOut = 'materialsInOut';
static const Product = 'product';
static const Project = 'project';
}