using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
///
/// 临时时间类(带第几天)
///
public class TimeClass
{
string yearMonthDays;
///
/// 年月日
///
public string YearMonthDays
{
get { return yearMonthDays; }
set { yearMonthDays = value; }
}
string day;
///
/// 第几天
///
public string Day
{
get { return day; }
set { day = value; }
}
}
}