This commit is contained in:
wyf
2025-06-27 16:27:56 +08:00
parent ee88290dfe
commit cee6c75f26
10 changed files with 92 additions and 15 deletions

View File

@@ -0,0 +1,11 @@
enum APPPackageType {
TH(1, '太和'),
HUANSHUI(2, '欢睡'),
MHT(3, '眠花糖'),
;
final int code;
final String description;
const APPPackageType(this.code, this.description);
}