Merge branch 'feature-nxdev' of https://gitea.nxsir.cn/code/IM into feature-nxdev

This commit is contained in:
2025-10-30 14:44:00 +08:00
47 changed files with 1140 additions and 696 deletions
+22
View File
@@ -0,0 +1,22 @@
namespace IM_API.Models
{
/// <summary>
/// 群加入权限
/// </summary>
public enum GroupAuhority
{
/// <summary>
/// 需管理员同意
/// </summary>
REQUIRE_CONSENT = 0,
/// <summary>
/// 任何人可加入
/// </summary>
ANYONE_CAN_JOIN = 1,
/// <summary>
/// 不允许加入
/// </summary>
NOT_ALLOWED_TO_JOIN = 2
}
}