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);
}
}