CacheManager.cs 817 B

1234567891011121314151617181920212223242526272829
  1. using NEIntelligentControl2.Models.PV;
  2. using NEIntelligentControl2.Models.Windturbine;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace NEIntelligentControl2.Service.Windturbine
  9. {
  10. /// <summary>
  11. /// 缓存信息
  12. /// </summary>
  13. public class CacheManager
  14. {
  15. /// <summary>
  16. /// 风机信息
  17. /// </summary>
  18. public Dictionary<string, WindturbineInfo> Windturbineinfos { get; internal set; }
  19. /// <summary>
  20. /// 光伏信息
  21. /// </summary>
  22. public Dictionary<string, PVInfo> PVInfos { get; set; }
  23. /// <summary>
  24. /// 自定义挂牌信息
  25. /// </summary>
  26. public Dictionary<string, CustomLockInfo> CustomLockInfos { get; set; }
  27. }
  28. }