RulesEngine/src/RulesEngine/Models/ActionInfo.cs

16 lines
362 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
namespace RulesEngine.Models
{
[ExcludeFromCodeCoverage]
public class ActionInfo
{
public string Name { get; set; }
public Dictionary<string, object> Context { get; set; }
}
}