RulesEngine/src/RulesEngine/Models/ActionInfo.cs

13 lines
249 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace RulesEngine.Models
{
public class ActionInfo
{
public string Name { get; set; }
public Dictionary<string, object> Context { get; set; }
}
}