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

12 lines
325 B
C#

namespace RobotNet10.RobotApp.Client.Shared.Modules;
/// <summary>
/// DTO cho trạng thái LiftModule (dùng cho SignalR)
/// </summary>
public class LiftModuleStatusDto
{
public string State { get; set; } = string.Empty;
public bool IsReady { get; set; }
public int CurrentPosition { get; set; }
}