RulesEngine/src/RulesEngine/Enums/ActionTriggerType.cs

12 lines
195 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace RulesEngine.Enums
{
public enum ActionTriggerType
{
onSuccess,
onFailure
}
}