Files
CapMachine/CapMachine.Shared/Controls/MeterSlopCell.cs
2024-07-04 17:42:03 +08:00

28 lines
599 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Shared.Controls
{
public class MeterSlopCell
{
/// <summary>
/// 开始值
/// </summary>
public double StartValue { get; set; }
/// <summary>
/// 结束值
/// </summary>
public double EndValue { get; set; }
/// <summary>
/// 维持时间
/// </summary>
public double KeepTime { get; set; }
}
}