BotSharp/src/Infrastructure/BotSharp.Abstraction/Models/KeyValue.cs
2024-09-07 11:00:11 -05:00

16 lines
300 B
C#

namespace BotSharp.Abstraction.Models;
public class KeyValue
{
[JsonPropertyName("key")]
public string Key { get; set; }
[JsonPropertyName("value")]
public string Value { get; set; }
public override string ToString()
{
return $"Key: {Key}, Value: {Value}";
}
}