12 lines
325 B
C#
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; }
|
|
}
|