public class CustomAction : SubmitActionBase<string> | |
{ | |
public CustomAction(ISubmitActionData submitActionData) : base(submitActionData) | |
{ | |
} | |
protected override bool Execute(string data, FormSubmitContext formSubmitContext) | |
{ | |
// Some code here | |
return true; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment