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
261 B

using System.ComponentModel;
namespace BrilliantSightClient.Model.GradeLevel.Entity.Enum;
public enum Shape
{
[Description("圆形")]
Round = 0,
[Description("椭圆形")]
Oval = 1,
[Description("梨形(水滴形)")]
Pear = 2,
}