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.
|
using System.ComponentModel; |
|
|
|
namespace BrilliantSightClient.Model.GradeLevel.Entity.Enum; |
|
|
|
public enum Statistics |
|
{ |
|
[Description("最大值")] |
|
Max = 0, |
|
[Description("最小值")] |
|
Min = 1, |
|
[Description("平均值")] |
|
Avg = 2, |
|
} |