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