19 lines
393 B
Dart
19 lines
393 B
Dart
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';
|
|
}
|