BeizeValveBackend/ZR.Model/Enum/CommentSwitchEnum.cs

13 lines
187 B
C#
Raw Normal View History

2024-11-28 13:36:05 +08:00
namespace ZR.Model.Enum
{
/// <summary>
/// 评论开关
/// </summary>
public enum CommentSwitchEnum
{
ALL = 0,
FANS = 1,
SELF = 2
}
}