using System.ComponentModel;
namespace QYZH.InteractiveMagazine.Models.Enum;
///
/// 固定模板言论分类枚举
///
public enum CommunityTemplateSentenceTypeEnum
{
///
/// 正面
///
[Description("正面")]
Positive = 1,
///
/// 中性
///
[Description("中性")]
Neutral = 2,
///
/// 负面
///
[Description("负面")]
Negative = 3
}