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.

39 lines
866 B

namespace CellularManagement.Application.Features.DeviceRuntimes.Commands.StopDeviceRuntime;
/// <summary>
/// 停止设备运行时状态响应
/// </summary>
public class StopDeviceRuntimeResponse
{
/// <summary>
/// 运行时状态ID
/// </summary>
public string Id { get; set; } = null!;
/// <summary>
/// 设备编号
/// </summary>
public string DeviceCode { get; set; } = null!;
/// <summary>
/// 运行时状态
/// </summary>
public string RuntimeStatus { get; set; } = null!;
/// <summary>
/// 运行编码
/// </summary>
public string? RuntimeCode { get; set; }
/// <summary>
/// 网络栈配置编号
/// </summary>
public string? NetworkStackCode { get; set; }
/// <summary>
/// 更新时间
/// </summary>
public DateTime UpdatedAt { get; set; }
}