20220510_191_upperpc/AutomaticApp/Models/SeriesModel.cs

19 lines
400 B
C#
Raw Permalink Normal View History

2023-07-27 02:57:34 +00:00
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; }
}
}