添加项目文件。

This commit is contained in:
2026-05-09 17:06:30 +08:00
parent c60f5fe117
commit 720ef957d4
378 changed files with 14843 additions and 0 deletions
@@ -0,0 +1,18 @@
namespace GroupService.Domain.Enums
{
public enum GroupAuthorityType
{
/// <summary>
/// 需管理员同意
/// </summary>
REQUIRE_CONSENT = 0,
/// <summary>
/// 任何人可加入
/// </summary>
ANYONE_CAN_JOIN = 1,
/// <summary>
/// 不允许加入
/// </summary>
NOT_ALLOWED_TO_JOIN = 2
}
}
@@ -0,0 +1,18 @@
namespace GroupService.Domain.Enums
{
public enum GroupInvitationState
{
/// <summary>
/// 待处理
/// </summary>
Pending = 0,
/// <summary>
/// 已同意
/// </summary>
Passed = 1,
/// <summary>
/// 拒绝
/// </summary>
Reject = 2
}
}
@@ -0,0 +1,18 @@
namespace GroupService.Domain.Enums
{
public enum GroupJoinRequestState
{
/// <summary>
/// 待管理员处理
/// </summary>
Pending = 0,
/// <summary>
/// 已拒绝
/// </summary>
Declined = 1,
/// <summary>
/// 已同意
/// </summary>
Passed = 2
}
}
@@ -0,0 +1,18 @@
namespace GroupService.Domain.Enums
{
public enum GroupMemberRole
{
/// <summary>
/// 普通成员
/// </summary>
Normal = 0,
/// <summary>
/// 管理员
/// </summary>
Administrator = 1,
/// <summary>
/// 群主
/// </summary>
Master = 2
}
}
+14
View File
@@ -0,0 +1,14 @@
namespace GroupService.Domain.Enums
{
public enum GroupState
{
/// <summary>
/// 正常
/// </summary>
Normal = 1,
/// <summary>
/// 封禁
/// </summary>
Blocked = 2
}
}