RobotNet/RobotNet.RobotShares/VDA5050/InstantAction/ActionParameter.cs
2025-10-15 15:15:53 +07:00

13 lines
271 B
C#

using System.ComponentModel.DataAnnotations;
namespace RobotNet.RobotShares.VDA5050.InstantAction;
#nullable disable
public class ActionParameter
{
[Required]
public string Key { get; set; } = "";
[Required]
public string Value { get; set; } = "";
}