添加项目文件。
This commit is contained in:
27
CapMachine.Shared/Controls/MeterSlopCell.cs
Normal file
27
CapMachine.Shared/Controls/MeterSlopCell.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user