RobotApp/RobotApp.VDA5050/State/EdgeState.cs
Đăng Nguyễn 5c1851e92f update
2025-12-31 14:03:47 +07:00

18 lines
433 B
C#

using RobotApp.VDA5050.Order;
using System.ComponentModel.DataAnnotations;
namespace RobotApp.VDA5050.State;
public class EdgeState
{
[Required]
public string EdgeId { get; set; } = string.Empty;
[Required]
public int SequenceId { get; set; }
public string EdgeDescription { get; set; } = string.Empty;
[Required]
public bool Released { get; set; }
public Trajectory? Trajectory { get; set; }
}