elsa-core/src/persistence/Elsa.Persistence.Abstractions/Models/SimpleExceptionProperty.cs
2022-03-10 00:19:00 +01:00

14 lines
312 B
C#

namespace Elsa.Persistence.Models
{
public class SimpleExceptionProperty
{
public SimpleExceptionProperty(string name, object value)
{
Name = name;
Value = value;
}
public string Name { get; set; }
public object Value { get; set; }
}
}