elsa-core/src/modules/Elsa.Workflows.Runtime/Entities/SerializedKeyValuePair.cs

7 lines
167 B
C#
Raw Normal View History

2024-02-02 10:21:29 +00:00
namespace Elsa.Workflows.Runtime.Entities;
public class SerializedKeyValuePair
{
public string Key { get; set; }
public string SerializedValue { get; set; }
}