Files

13 lines
184 B
C#
Raw Permalink Normal View History

2021-10-11 21:50:50 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Yi.Framework.Common.Enum
{
public enum DelFlagEnum
{
Normal=0,
Deleted=1
}
}