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

22 lines
349 B

using System.ComponentModel;
namespace Magic.FlowCenter;
/// <summary>
/// 表单类型
/// </summary>
public enum FormType
{
/// <summary>
/// 正常
/// </summary>
[Description("动态表单")]
DESIGNFORM = 0,
/// <summary>
/// 停用
/// </summary>
[Description("自定义表单")]
CUSTOMFORM = 1,
}