using System.ComponentModel.DataAnnotations; namespace HStation.PBS { /// /// 连接类型 /// public enum eConnectionType { [Display(Name = "蓝牙连接")] Bluetooth = 0, [Display(Name = "网络连接")] Network = 2 } }