using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections.ObjectModel; namespace BPASmart.Model { /// /// 通讯参数配置 /// public class CommunicationPar { public ObservableCollection CommunicationDevices { get; set; } = new ObservableCollection(); } }