using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
namespace IStation.Entity.Inspect
{
///
///
///
public class RecordDayCountStatic
{
///
/// RecordDay
///
public DateTime RecordDay
{
get { return _recordday; }
set { _recordday = value; }
}
private DateTime _recordday;
///
/// ID
///
public int Count
{
get { return _count; }
set { _count = value; }
}
private int _count;
}
}