mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-06-07 18:38:20 +08:00
e5063e1a4d
v3.0.1
13 lines
180 B
C#
13 lines
180 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CC.Yi.ViewModel.Enum
|
|
{
|
|
public enum DelFlagEnum
|
|
{
|
|
Normal=0,
|
|
Deleted=1
|
|
}
|
|
}
|