123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Models
- {
- /// <summary>
- /// 年月类
- /// </summary>
- public class YearMonth
- {
- string yearMonths;
- /// <summary>
- /// 年月
- /// </summary>
- public string YearMonths
- {
- get { return yearMonths; }
- set { yearMonths = value; }
- }
- }
- }
|