10 lines
274 B
C#
10 lines
274 B
C#
|
|
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; }
|
||
|
|
}
|