app/lib/common/conf/const_conf.dart

8 lines
255 B
Dart
Raw Normal View History

2024-03-07 23:01:32 +08:00
class ConstConf {
2024-09-04 17:18:13 +08:00
static const String appVersion = "Lite";
static const int appVersionCode = 0;
static const String appVersionDate = "2024-09-04";
2024-03-31 13:30:56 +08:00
static const gameChannels = ["LIVE", "PTU", "EPTU", "TECH-PREVIEW"];
2024-09-04 17:18:13 +08:00
static const isMSE = true;
2024-03-07 23:01:32 +08:00
}