elsa-core/src/modules/Elsa.KeyValues/Entities/SerializedKeyValuePair.cs

7 lines
159 B
C#
Raw Normal View History

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