mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
40 lines
677 B
C#
40 lines
677 B
C#
namespace Netch.Models
|
|
{
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
public enum State
|
|
{
|
|
/// <summary>
|
|
/// 等待命令中
|
|
/// </summary>
|
|
Waiting,
|
|
|
|
/// <summary>
|
|
/// 正在启动中
|
|
/// </summary>
|
|
Starting,
|
|
|
|
/// <summary>
|
|
/// 已启动
|
|
/// </summary>
|
|
Started,
|
|
|
|
/// <summary>
|
|
/// 正在停止中
|
|
/// </summary>
|
|
Stopping,
|
|
|
|
/// <summary>
|
|
/// 已停止
|
|
/// </summary>
|
|
Stopped,
|
|
|
|
|
|
/// <summary>
|
|
/// 退出中
|
|
/// </summary>
|
|
Terminating
|
|
}
|
|
}
|