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.

22 lines
492 B

namespace CoreAgent.Domain.Models.System;
/// <summary>
/// 设备信息模型
/// </summary>
public class DeviceInfo
{
/// <summary>
/// 是否成功获取到序列号
/// </summary>
public bool IsSuccess { get; set; }
/// <summary>
/// 设备序列号(SN)
/// </summary>
public string SerialNumber { get; set; } = string.Empty;
/// <summary>
/// 获取时间
/// </summary>
public DateTime Timestamp { get; set; } = DateTime.UtcNow;
}