using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
namespace IStation.Model
{
public class MonthSignalRecordPacket
{
public MonthSignalRecordPacket() { }
///
/// 年
///
public int Year { get; set; }
///
/// 月
///
public int Month { get; set; }
///
/// 泵站信号记录列表
///
public List StationSignalRecords { get; set; }
}
}