2025-04-21 14:10:27 +08:00

27 lines
562 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;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Enumeration
{
/// <summary>
/// 是否删除。1=删除0=没删除。
/// </summary>
public enum IsDelete
{
/// <summary>
/// 1=删除
/// </summary>
[Description("1=删除")]
Yes=1,
/// <summary>
/// 0=没删除
/// </summary>
[Description("0=没删除")]
No=0
}
}