diff --git a/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/RichContent.cs b/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/RichContent.cs index fb6a121f..221dc96d 100644 --- a/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/RichContent.cs +++ b/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/RichContent.cs @@ -7,7 +7,7 @@ namespace BotSharp.Abstraction.Messaging.Models.RichContent /// RESPONSE /// [JsonPropertyName("messaging_type")] - public string? MessagingType { get; set; } + public string MessagingType => "RESPONSE"; public T Message { get; set; } } }