tangxu
2025-02-07 03a0d99de9c5fed6bea8bc83b49ce27786bda38c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace IStation.Model
{
    public class YearMonth
    {
        public YearMonth() { }
 
        public YearMonth(int year, int month)
        {
            this.Year = year;
            this.Month = month;
        }
 
        /// <summary>
        /// 年
        /// </summary>    
        public int Year { get; set; }
 
        /// <summary>
        /// 月
        /// </summary>    
        public int Month { get; set; }
    }
}