feat: 新增任务需求枚举

This commit is contained in:
chenchun
2024-08-13 15:33:03 +08:00
parent 9530350d06
commit 35ebce6a85
6 changed files with 101 additions and 13 deletions

View File

@@ -0,0 +1,26 @@
namespace Yi.Framework.Bbs.Domain.Shared.Enums;
public enum AssignmentRequirementTypeEnum
{
/// <summary>
/// 主题
/// </summary>
Discuss=2,
/// <summary>
/// 评论
/// </summary>
Comment=4,
/// <summary>
/// 更新个人中心
/// </summary>
UpdateProfile=8,
/// <summary>
/// 点赞
/// </summary>
Agree=16
}