using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model { public class DeviceInfoModel { public string DeviceName { get; set; } public string DeviceType { get; set; } public string Remark { get; set; } public bool IsEnabled { get; set; } public bool IsConnected { get; set; } public ICommunicationConfig CommunicationConfig { get; set; } } }