elsa-core/src/modules/Elsa.Workflows.Runtime/Models/LogPersistenceConfiguration.cs

10 lines
274 B
C#
Raw Normal View History

using Elsa.Expressions.Models;
namespace Elsa.Workflows.Runtime;
public class LogPersistenceConfiguration
{
public LogPersistenceEvaluationMode EvaluationMode { get; set; }
public string? StrategyType { get; set; }
public Expression? Expression { get; set; }
}