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