using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Calculation.Eta.Model
{
///
///
///
public class StationAnaInfoBundle
{
///
///
///
public long StationID { get; set; }
///
///
///
protected IStation.Model.EtaMultiRealRecordPure _result = null;
///
///
///
public IStation.Model.EtaMultiRealRecordPure AnaResult
{
get
{
return _result;
}
set
{
_result = value;
}
}
}
}