123456789101112131415161718192021222324 |
- using NEIntelligentControl2.Models.Station;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NEIntelligentControl2.Models.Matrix
- {
- /// <summary>
- /// 场站信息
- /// </summary>
- internal interface IStationInfo
- {
- /// <summary>
- /// 场站信息
- /// </summary>
- StationInfo StationInfo { get; set; }
- /// <summary>
- /// 更新数据
- /// </summary>
- void UpdateData(object data);
- }
- }
|