YearMonth.cs 428 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Models
  6. {
  7. /// <summary>
  8. /// 年月类
  9. /// </summary>
  10. public class YearMonth
  11. {
  12. string yearMonths;
  13. /// <summary>
  14. /// 年月
  15. /// </summary>
  16. public string YearMonths
  17. {
  18. get { return yearMonths; }
  19. set { yearMonths = value; }
  20. }
  21. }
  22. }