You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
601 B
24 lines
601 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace X1.Domain.ThirdPartyDeviceHttpClient.Models
|
|
{
|
|
/// <summary>
|
|
/// 设备信息响应模型(用于API响应)
|
|
/// </summary>
|
|
public class DeviceInfoResponse
|
|
{
|
|
/// <summary>
|
|
/// 设备序列号(SN)
|
|
/// </summary>
|
|
public string SerialNumber { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 获取时间
|
|
/// </summary>
|
|
public DateTime Timestamp { get; set; } = DateTime.UtcNow;
|
|
}
|
|
}
|
|
|