RobotApp/RobotApp.VDA5050/InstantAction/ActionParameter.cs
Đăng Nguyễn 0d97684f70 update
2025-09-15 17:39:02 +07:00

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; } = "";
}