Files
I150/srcs/RobotNet10/Shared/RobotNet.VDA5050/Factsheet/ProtocolFeatures.cs
2026-07-03 16:37:12 +07:00

17 lines
414 B
C#

using System.ComponentModel.DataAnnotations;
using System.Text.Json.Serialization;
namespace RobotNet.VDA5050.Factsheet;
public class ProtocolFeatures
{
[Required]
[JsonPropertyName("optionalParameters")]
public OptionalParameter[] OptionalParameters { get; set; } = [];
[Required]
[JsonPropertyName("agvActions")]
public AgvAction[] AgvActions { get; set; } = [];
}