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