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; } } }