Init project
This commit is contained in:
12
RobotApp.VDA5050/InstantAction/ActionParameter.cs
Normal file
12
RobotApp.VDA5050/InstantAction/ActionParameter.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace RobotApp.VDA5050.InstantAction;
|
||||
|
||||
#nullable disable
|
||||
public class ActionParameter
|
||||
{
|
||||
[Required]
|
||||
public string Key { get; set; } = "";
|
||||
[Required]
|
||||
public string Value { get; set; } = "";
|
||||
}
|
||||
Reference in New Issue
Block a user