RobotNet/RobotNet.RobotShares/Models/RobotRotateModel.cs
2025-10-15 15:15:53 +07:00

12 lines
241 B
C#

using System.ComponentModel.DataAnnotations;
namespace RobotNet.RobotShares.Models;
public class RobotRotateModel
{
public string RobotId { get; set; } = string.Empty;
[Range(-180, 180)]
public double Angle { get; set; }
}