29 lines
237 B
C#
29 lines
237 B
C#
|
|
namespace DongWuYiXue.DaoNiaoShu
|
|
{
|
|
public class AIKaoHeData
|
|
{
|
|
//序号
|
|
|
|
public int id;
|
|
|
|
//提示
|
|
|
|
public string txt;
|
|
|
|
//AI
|
|
|
|
public string AI;
|
|
|
|
//状态
|
|
|
|
public string state;
|
|
|
|
//备注
|
|
|
|
public string remark;
|
|
|
|
|
|
}
|
|
}
|