添加项目文件。

This commit is contained in:
akwkevin
2021-07-23 09:42:22 +08:00
commit f25a958797
2798 changed files with 352360 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace Util.DiagramDesigner
{
public enum ArrowSizeStyle
{
[Description("非常小")]
VerySmall = 6,
[Description("小")]
Small = 8,
[Description("中")]
Middle = 10,
[Description("大")]
Large = 12,
[Description("特别大")]
ExtraLarge = 16,
[Description("巨大")]
Huge = 24,
}
}