Shuxia Ning
2024-07-17 fd681339c81201ed6fb3303647ecab89e3e6c0c1
1
2
3
4
5
6
7
8
9
10
11
namespace IStation
{
    public class DayValue
    {
        public int Year { get; set; }
        public int Month { get; set; }
        public int Day { get; set; }
        public List<TimeValue> TimeValues { get; set; }
 
    }
}