1
0
mirror of https://github.com/zhaopeiym/IoTClient synced 2025-10-26 22:15:44 +08:00
Files
IoTClient/IoTClient.Tool/Model/VersionCheckInput.cs
BennyZhao 665724aff4 fix ModbusRtu、ModBusAscii、串口等 奇偶校验。
ModBusTcp读写操作使用说明。
西门子S7 300 beta
2019-11-13 08:29:39 +08:00

16 lines
335 B
C#

namespace IoTClient.Tool.Model
{
public class VersionCheckInput
{
/// <summary>
/// 当前版本
/// </summary>
public float CurrentVersion { get; set; } = 0.32f;
/// <summary>
/// 忽略版本
/// </summary>
public float? IgnoreVersion { get; set; }
}
}