From a7185de6b591f21de25992d436ffacca5700777e Mon Sep 17 00:00:00 2001 From: Haiping Chen Date: Fri, 22 Mar 2024 10:12:25 -0500 Subject: [PATCH] IRichMessage [JsonPropertyName("text")] --- .../BotSharp.Abstraction/Messaging/IRichMessage.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Infrastructure/BotSharp.Abstraction/Messaging/IRichMessage.cs b/src/Infrastructure/BotSharp.Abstraction/Messaging/IRichMessage.cs index fb87f381..79cd06c8 100644 --- a/src/Infrastructure/BotSharp.Abstraction/Messaging/IRichMessage.cs +++ b/src/Infrastructure/BotSharp.Abstraction/Messaging/IRichMessage.cs @@ -2,6 +2,7 @@ namespace BotSharp.Abstraction.Messaging; public interface IRichMessage { + [JsonPropertyName("text")] string Text { get; set; } [JsonPropertyName("rich_type")]