using System; namespace HDL_ON { [Serializable] public class DeviceInfoRes { public int Id { get; set; } public string DeviceType { get; set; } public int SubnetID { get; set; } public int DeviceID { get; set; } public int LoopID { get; set; } public string DeviceName { get; set; } public int GatewayID { get; set; } public int UserID { get; set; } public string MAC { get; set; } public string Password { get; set; } } }