using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.Model { public class DeviceConfigModel { public List Devices { get; set; } = new List(); } public class DeviceConfig { public string Name { get; set; } public string Module { get; set; } public int DeviceId { get; set; } public Dictionary Parameters { get; set; } = new Dictionary(); public List Peripherals { get; set; } = new List(); } public class Peripheral { public string Module { get; set; } public Dictionary Parameters { get; set; } = new Dictionary(); } }