22 lines
362 B
C#
22 lines
362 B
C#
namespace ShengShengBuXi.ConsoleApp.Models;
|
|
|
|
/// <summary>
|
|
/// 客户端类型
|
|
/// </summary>
|
|
public enum ClientType
|
|
{
|
|
/// <summary>
|
|
/// 控制器客户端
|
|
/// </summary>
|
|
Controller = 0,
|
|
|
|
/// <summary>
|
|
/// Web管理端
|
|
/// </summary>
|
|
WebAdmin = 1,
|
|
|
|
/// <summary>
|
|
/// 显示端
|
|
/// </summary>
|
|
Display = 2
|
|
} |