How I can create Dynamic list as parameter in Action to use it in function after then
[Action("Send Email", "Send Email")]
public void SendEmail(CaseRequest caserequest, [Parameter(ValueInputType.User, Description = "Output message")] List<string> ListEmail)
{
//Send Email
}
Is doable to pass list of action , I need to it for this condition
if condition is true then sendEmail( display list of emails)
question from:https://stackoverflow.com/questions/65626712/dynamic-list-as-parameter-in-action