using System; namespace TeamAAS.Communication.Models { /// /// 通讯设备类型描述(反射得到的元数据,用于界面下拉框)。 /// public class CommunicationTypeInfo { public string TypeKey { get; set; } public string DisplayName { get; set; } public string Category { get; set; } public string Description { get; set; } public Type Type { get; set; } public override string ToString() => DisplayName; } }