Files
sy_hx_pbl_backend/DOAN.Model/System/Model/Enums/MenuStatus.cs
2024-09-23 09:14:22 +08:00

16 lines
293 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.ComponentModel;
namespace DOAN.Model.System.Enums
{
/// <summary>
/// 菜单状态0正常 1停用
/// </summary>
public enum MenuStatus
{
[Description("正常")]
= 0,
[Description("停用")]
= 1,
}
}