7 lines
167 B
C#
7 lines
167 B
C#
|
|
namespace Elsa.Workflows.Runtime.Entities;
|
||
|
|
|
||
|
|
public class SerializedKeyValuePair
|
||
|
|
{
|
||
|
|
public string Key { get; set; }
|
||
|
|
public string SerializedValue { get; set; }
|
||
|
|
}
|