namespace IStation.Model { public class YearMonth { public YearMonth() { } public YearMonth(int year, int month) { this.Year = year; this.Month = month; } /// /// 年 /// public int Year { get; set; } /// /// 月 /// public int Month { get; set; } } }