RulesEngine/src/RulesEngine/Models/ActionResult.cs

6 lines
125 B
C#

using System;
public class ActionResult{
public object Output {get; set;}
public Exception Exception { get; set; }
}