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
+14
View File
@@ -0,0 +1,14 @@
namespace IM_API.Models
{
public enum MessageState
{
/// <summary>
/// 已发送
/// </summary>
Sent = 0,
/// <summary>
/// 已撤回
/// </summary>
Withdrwan = 1
}
}