.NETAdmin/ZR.Model/Enum/CommentSwitchEnum.cs
2025-07-29 19:15:56 +08:00

13 lines
187 B
C#

namespace ZR.Model.Enum
{
/// <summary>
/// 评论开关
/// </summary>
public enum CommentSwitchEnum
{
ALL = 0,
FANS = 1,
SELF = 2
}
}