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.
24 lines
456 B
24 lines
456 B
4 years ago
|
using System.ComponentModel;
|
||
|
|
||
|
namespace CK.SCP.Models.Enums
|
||
|
{
|
||
|
|
||
|
|
||
|
public enum PartType
|
||
|
{
|
||
|
[Description("�ɹ���")]
|
||
|
B = 0,
|
||
|
[Description("���Ƽ�")]
|
||
|
M = 1,
|
||
|
[Description("�ͻ�ָ��")]
|
||
|
D = 2,
|
||
|
[Description("�ͻ�ָ������")]
|
||
|
DN = 21,
|
||
|
[Description("�ͻ�ָ������")]
|
||
|
DY = 22,
|
||
|
[Description("����")]
|
||
|
S = 3,
|
||
|
[Description("������˾�ɹ���")]
|
||
|
Y = 4
|
||
|
}
|
||
|
}
|