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.

13 lines
255 B

using System.ComponentModel;
namespace BrilliantSightClient.Model.GradeResult.Entity.Enums;
public enum DiamondShape
{
[Description("圆形")]
Round = 0,
[Description("椭圆形")]
Oval = 1,
[Description("梨形")]
Pear = 2,
}