RobotApp/RobotApp.VDA5050/InstantAction/ActionParameter.cs
Đăng Nguyễn cf309cccba Init project
2025-09-10 10:48:39 +07:00

13 lines
259 B
C#

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