1
0
mirror of https://github.com/zhaopeiym/IoTClient synced 2025-10-26 22:15:44 +08:00
IoTClient/IoTClient.Tool/Model/VersionCheckInput.cs
2019-11-07 15:28:50 +08:00

16 lines
335 B
C#

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