CSharp-Single-EFCore/Bunny.Dao/Common/Constant/StatusConstant.cs

10 lines
195 B
C#
Raw Normal View History

namespace Bunny.Dao.Common.Constant;
2024-08-08 22:23:36 +08:00
/// <summary>
/// 状态相关常量
/// </summary>
public class StatusConstant
{
public const int Enable = 1;
public const int Disable = 0;
}