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
- {
-
-
-
- internal interface IStationInfo
- {
-
-
-
- StationInfo StationInfo { get; set; }
-
-
-
- void UpdateData(object data);
- }
- }
|