cloudflight
2023-12-20 45617514e7d4961c8abe424a4776f10d3f5e414b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Hydro.Core.Model
{
    public class TimePoint
    {
        public string Key { get; set; }
 
        public double Value { get; set; }
 
        public double SearchRange = 0;
 
        public string Name;
 
        public bool isNeedtoSave = false;
 
        public string SaveKey = null;
    }
}