23 lines
360 B
C#
23 lines
360 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace XKRS.Common.Model.Helper
|
|
{
|
|
public static class EnumHelper
|
|
{
|
|
public enum DeviceState
|
|
{
|
|
|
|
}
|
|
|
|
[Flags]//将枚举视为位域
|
|
public enum DeviceAttributeType
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|