1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NEIntelligentControl2.Models.BoostStation
- {
-
-
-
- public class BoostStationInfo
- {
-
-
-
- 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<BoostStationPointInfo> boostStationPointInfos;
-
-
-
- public List<BoostStationPointInfo> BoostStationPointInfos { get => boostStationPointInfos ?? (boostStationPointInfos = new List<BoostStationPointInfo>()); set => boostStationPointInfos = value; }
- }
- }
|