Accounts.cs
509 Bytes
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HHECS.Application.Enums
{
/// <summary>
/// 内置账户
/// </summary>
public enum Accounts
{
/// <summary>
/// WCS接口
/// </summary>
[Description("WCS接口")]
WCSInterface,
/// <summary>
/// WCS
/// </summary>
[Description("WCS")]
WCS
}
}