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

10 lines
194 B
C#
Raw Normal View History

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