You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
namespace Kingo.Plugin.EngineEditor.Entity
|
|
|
|
|
{
|
|
|
|
|
public class InterlligentEntity
|
|
|
|
|
{
|
|
|
|
|
private string _OID;
|
|
|
|
|
private string _DLBM;
|
|
|
|
|
private string _DLMC;
|
|
|
|
|
private string _AREA;
|
|
|
|
|
public string AREA { get => _AREA; set => _AREA = value; }
|
|
|
|
|
public string DLMC { get => _DLMC; set => _DLMC = value; }
|
|
|
|
|
public string DLBM { get => _DLBM; set => _DLBM = value; }
|
|
|
|
|
public string OID { get => _OID; set => _OID = value; }
|
|
|
|
|
}
|
|
|
|
|
}
|