Files
I150/srcs/RobotNet10/RobotApp/RobotNet10.RobotApp.Client/Shared/Devices/RfHandleDataDto.cs
2026-07-03 16:37:12 +07:00

30 lines
949 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace RobotNet10.RobotApp.Client.Shared.Devices;
// ======================================================================
// DTO LITE khớp 100% IRfHandle Lite + RfHandleHub Lite
// ======================================================================
public class RfHandleDataDto
{
public string DeviceId { get; set; } = "";
public int Heartbeat { get; set; }
public bool RemoteReady { get; set; }
public bool EStop { get; set; }
public bool LiftUp { get; set; }
public bool LiftDown { get; set; }
public bool RotateLeft { get; set; }
public bool RotateRight { get; set; }
public bool ModeSelect { get; set; }
public bool Enable { get; set; }
public int Speed { get; set; }
public double Linear { get; set; }
public double Angular { get; set; }
public string Mode { get; set; } = "Unknown";
public DateTime LastUpdateTime { get; set; }
}