13 lines
271 B
C#
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; } = "";
|
|
}
|