12 lines
241 B
C#
12 lines
241 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace RobotApp.VDA5050.InstantAction;
|
|
|
|
public class ActionParameter
|
|
{
|
|
[Required]
|
|
public string Key { get; set; } = "";
|
|
[Required]
|
|
public string Value { get; set; } = "";
|
|
}
|