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 RunMode |
|
{ |
|
[Description("实验室模式")] |
|
Laboratory = 0, |
|
[Description("工厂模式")] |
|
Factory = 1, |
|
[Description("通用")] |
|
Nor = -1, |
|
} |