This commit is contained in:
hrxiang
2022-07-05 10:25:59 +08:00
parent bf354c4103
commit a9343bf892
3 changed files with 12 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
/// 组类型
class GroupType {
/// 普通群
static const int general = 0;
/// 工作群
static const int work = 2;
}