20 lines
455 B
C#
20 lines
455 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace RobotApp.VDA5050.Order;
|
|
|
|
#nullable disable
|
|
|
|
public class NodeLog
|
|
{
|
|
[Required]
|
|
public string NodeId { get; set; } = "";
|
|
public string NodeDescription { get; set; } = "";
|
|
[Required]
|
|
public double X { get; set; }
|
|
[Required]
|
|
public double Y { get; set; }
|
|
[Required]
|
|
public double Theta { get; set; }
|
|
public InstantAction.Action[] Actions { get; set; } = [];
|
|
}
|