13 lines
184 B
C#
13 lines
184 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Yi.Framework.Common.Enum
|
|
{
|
|
public enum DelFlagEnum
|
|
{
|
|
Normal=0,
|
|
Deleted=1
|
|
}
|
|
}
|