feat: 添加bbs等级及用户限制功能

This commit is contained in:
陈淳
2023-12-22 15:51:18 +08:00
parent c5cfa2f143
commit 4ace93bff3
11 changed files with 213 additions and 10 deletions

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Bbs.Domain.Shared.Enums
{
public enum UserLimitEnum
{
/// <summary>
/// 正常
/// </summary>
Normal,
/// <summary>
/// 危险
/// </summary>
Dangerous,
/// <summary>
/// 已禁止
/// </summary>
Ban
}
}