2025-01-25 04:38:09 +08:00

18 lines
302 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Thousandto.Plugins.Common
{
// 网络连接枚举
public enum NetCondition
{
DEFAULT = 0,
DISCONN_TO_CONN,
CONN_TO_DISCONN,
DISCONN_BY_COMMAND,
CONN_BY_COMMAND
}
}