You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
haoliang-net/src/CncModels/Dto/Machine/MachineStatusResponse.cs

14 lines
344 B
C#

namespace CncModels.Dto.Machine
{
/// <summary>
/// 实时采集状态
/// </summary>
public class MachineStatusResponse
{
public int Status { get; set; }
public System.DateTime? LastUpdate { get; set; }
public string LastProgramName { get; set; }
public string Message { get; set; }
}
}