fix: 修复bbs点赞数异常问题

This commit is contained in:
橙子
2024-05-22 22:16:44 +08:00
parent 3429de9eb6
commit 695989969d
5 changed files with 110 additions and 15 deletions

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Bbs.Domain.Shared.Enums
{
/// <summary>
/// 消息类型
/// </summary>
public enum NoticeTypeEnum
{
/// <summary>
/// 个人
/// </summary>
Personal,
/// <summary>
/// 广播
/// </summary>
Broadcast,
}
}