BeizeValveBackend/ZR.Model/Enum/CommentSwitchEnum.cs
2024-11-28 13:37:01 +08:00

13 lines
187 B
C#

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