using System.Collections.Generic;
namespace IStation.Model
{
public class CurveAnalyzePointPacket
{
public CurveAnalyzePointPacket() { }
///
/// 曲线分析包标识
///
public long CurveAnalyzeID { get; set; }
///
/// 年
///
public int Year { get; set; }
///
/// 月
///
public int Month { get; set; }
///
/// 分析点列表
///
public List Points { get; set; }
}
}