6 lines
167 B
Dart
Raw Normal View History

2025-10-23 22:16:53 +07:00
class AppConstant {
2025-10-24 01:16:50 +07:00
static const String appName = "Apskel POS";
2025-10-24 23:20:41 +07:00
static const String dbName = "apskel_pos.db";
2025-10-24 20:06:42 +07:00
static const int cacheExpire = 10; // in minutes
2025-10-23 22:16:53 +07:00
}