添加项目文件。
This commit is contained in:
43
QuickModeling/Models/ComponentType.cs
Normal file
43
QuickModeling/Models/ComponentType.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace QuickModeling.Models
|
||||
{
|
||||
public enum ComponentType
|
||||
{
|
||||
/// <summary>
|
||||
/// 管环
|
||||
/// </summary>
|
||||
[Description("管环")]
|
||||
SegmentRing,
|
||||
/// <summary>
|
||||
/// 仰拱填充
|
||||
/// </summary>
|
||||
[Description("仰拱填充")]
|
||||
VaultFill,
|
||||
/// <summary>
|
||||
/// 盖板
|
||||
/// </summary>
|
||||
[Description("盖板")]
|
||||
Cover,
|
||||
/// <summary>
|
||||
/// 侧沟槽身
|
||||
/// </summary>
|
||||
[Description("侧沟槽身")]
|
||||
SideGroovedBody,
|
||||
/// <summary>
|
||||
/// 导台
|
||||
/// </summary>
|
||||
[Description("导台")]
|
||||
Guides,
|
||||
/// <summary>
|
||||
/// 踏步板
|
||||
/// </summary>
|
||||
[Description("踏步板")]
|
||||
TreadBoard
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user