18 lines
302 B
C#
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
|
|||
|
}
|
|||
|
}
|