Initial commit

This commit is contained in:
2026-07-03 16:31:37 +07:00
commit 899c7c637d
1939 changed files with 641750 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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; }
}

View File

@@ -0,0 +1,11 @@
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; }
}