17 lines
304 B
C#
17 lines
304 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace 货架标准上位机
|
||
{
|
||
/// <summary>
|
||
/// 增删改查(CRUD)枚举
|
||
/// </summary>
|
||
public enum CrudEnum
|
||
{
|
||
Create, Read, Update, Delete
|
||
}
|
||
}
|