20220510_191_upperpc/AutomaticApp/Models/SeriesModel.cs
2023-07-27 10:57:34 +08:00

19 lines
400 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutomaticApp.Model
{
public class SeriesModel
{
public string SeriesName { get; set; }
public string CurrentValue { get; set; }
public bool IsGrowing { get; set; }
//变化率
public int ChangeRate { get; set; }
}
}