using NEIntelligentControl2.Models.PV; using NEIntelligentControl2.Models.Windturbine; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NEIntelligentControl2.Service.Windturbine { /// /// 缓存信息 /// public class CacheManager { /// /// 风机信息 /// public Dictionary Windturbineinfos { get; internal set; } /// /// 光伏信息 /// public Dictionary PVInfos { get; set; } /// /// 自定义挂牌信息 /// public Dictionary CustomLockInfos { get; set; } } }