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