2026-06-08 17:54:36 +08:00
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
2026-06-08 16:57:44 +08:00
|
|
|
namespace QYZH.InteractiveMagazine.Models.Enum;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 评论类型枚举
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum CommunityMessageCommentTypeEnum
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 模板评论
|
|
|
|
|
/// </summary>
|
2026-06-08 17:54:36 +08:00
|
|
|
[Description("模板评论")]
|
2026-06-08 16:57:44 +08:00
|
|
|
TemplateComment = 1
|
|
|
|
|
}
|