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