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