Files
Denso/srcs/RobotNet10/RobotApp/RobotNet10.RobotApp.Client/Shared/Modules/RotationModuleStatusDto.cs
2026-07-03 16:31:37 +07:00

12 lines
333 B
C#

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