20 lines
438 B
Dart
20 lines
438 B
Dart
//ignore_for_file: constant_identifier_names
|
|
enum BackActionEnum {
|
|
refresh,
|
|
}
|
|
|
|
enum LoginEnum { apple, fastLogin }
|
|
|
|
class InventoryInOrOutEnum {
|
|
static const int In = 0;
|
|
static const int Out = 1;
|
|
}
|
|
|
|
class StorageBussinessModuleEnum {
|
|
static const Contract = 'contract';
|
|
static const Company = 'company';
|
|
static const MaterialsInOut = 'materialsInOut';
|
|
static const Product = 'product';
|
|
static const Project = 'project';
|
|
}
|