11 lines
175 B
C#
11 lines
175 B
C#
|
|
using System.ComponentModel;
|
|||
|
|
|
|||
|
|
namespace LMS.Common.Enums
|
|||
|
|
{
|
|||
|
|
public enum MachineAuthorizationEnum
|
|||
|
|
{
|
|||
|
|
[Description("NanFengAI")]
|
|||
|
|
NanFengAI = 0,
|
|||
|
|
}
|
|||
|
|
}
|