19 lines
400 B
C#
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; }
|
|||
|
|
}
|
|||
|
|
}
|