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