IStationInfo.cs 544 B

123456789101112131415161718192021222324
  1. using NEIntelligentControl2.Models.Station;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace NEIntelligentControl2.Models.Matrix
  8. {
  9. /// <summary>
  10. /// 场站信息
  11. /// </summary>
  12. internal interface IStationInfo
  13. {
  14. /// <summary>
  15. /// 场站信息
  16. /// </summary>
  17. StationInfo StationInfo { get; set; }
  18. /// <summary>
  19. /// 更新数据
  20. /// </summary>
  21. void UpdateData(object data);
  22. }
  23. }