using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XImagingXhandler.XDAL { /// /// 属性信息 /// public class MethodPropertyInfo { /// /// 属性状态标志 /// public int property_state_info { get; set; } /// /// 属性名称 /// public string property_name_info { get; set; } /// /// 属性提示信息 /// public string property_tips_info { get; set; } } }