You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
534 B
C#

1 year ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Mesnac.Basic
{
#region 定义创建类型的枚举
/// <summary>
/// 可以创建的画面或设备的类型
/// </summary>
public enum CreateType
{
/// <summary>
/// 画面
/// </summary>
Form,
/// <summary>
/// 设备
/// </summary>
Device,
/// <summary>
/// 命令
/// </summary>
Command
}
#endregion
}