mirror of
https://github.com/zhaopeiym/IoTClient
synced 2025-10-26 22:15:44 +08:00
16 lines
305 B
C#
16 lines
305 B
C#
namespace IoTClient.Tool.Model
|
|
{
|
|
public class VersionCheckOutput
|
|
{
|
|
/// <summary>
|
|
/// 更新Code
|
|
/// </summary>
|
|
public int Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文件大小
|
|
/// </summary>
|
|
public int FileSize { get; set; }
|
|
}
|
|
}
|