elsa-core/src/modules/Elsa.KeyValues/Entities/SerializedKeyValuePair.cs
2024-02-19 10:39:07 +01:00

7 lines
159 B
C#

namespace Elsa.KeyValues.Entities;
public class SerializedKeyValuePair
{
public string Key { get; set; }
public string SerializedValue { get; set; }
}