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.
17 lines
410 B
17 lines
410 B
namespace CoreAgent.Domain.Models.System;
|
|
|
|
/// <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;
|
|
}
|