using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NEIntelligentControl2.Models.BoostStation { /// /// 升压站信息 /// public class BoostStationInfo { /// /// 升压站ID /// public string Id { get; set; } /// /// 场站名称 /// public string Name { get; set; } /// /// 标签名称 /// public string TagName { get; set; } /// /// 序号 /// public int Index { get; set; } /// /// 背景图片路径 /// public string Background { get; set; } /// /// 更新时间 /// public long UpdatedDate { get; set; } private List boostStationPointInfos; /// /// 控件信息 /// public List BoostStationPointInfos { get => boostStationPointInfos ?? (boostStationPointInfos = new List()); set => boostStationPointInfos = value; } } }