17 lines
222 B
C#
17 lines
222 B
C#
|
|
namespace DongWuYiXue.DaoNiaoShu
|
|
{
|
|
public class StateData
|
|
{
|
|
//序号
|
|
|
|
public int id;
|
|
|
|
//状态
|
|
|
|
public string state;
|
|
|
|
//条件
|
|
|
|
public string trigger;
|
|
|
|
//备注
|
|
|
|
public string remark;
|
|
|
|
|
|
}
|
|
}
|