| 123456789101112131415161718 |
- using System;
- namespace TeamAAS.Communication.Models
- {
- /// <summary>
- /// 通讯设备类型描述(反射得到的元数据,用于界面下拉框)。
- /// </summary>
- 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;
- }
- }
|