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.
31 lines
730 B
31 lines
730 B
using System.ComponentModel; |
|
|
|
namespace SparkClient.Model.Enums; |
|
|
|
public enum PlaneType |
|
{ |
|
[Description("瑕疵面")] |
|
Error = -1, |
|
[Description("腰")] |
|
Girdle = 0, |
|
[Description("冠部")] |
|
Crown = 1, |
|
[Description("亭部")] |
|
Pavilion = 2, |
|
[Description("台面")] |
|
TableFacet = 11, |
|
[Description("冠部主刻面(风筝面)")] |
|
UpperMainFacet = 12, |
|
[Description("星刻面")] |
|
StarFacet = 13, |
|
[Description("上腰面")] |
|
UpperGirdleFacet = 14, |
|
[Description("亭部主刻面")] |
|
PavilionMainFacet = 21, |
|
[Description("下腰面")] |
|
LowerGirdleFact = 22, |
|
[Description("底尖(或底小面)")] |
|
Culet = 23, |
|
[Description("其他")] |
|
Other = 99 |
|
} |