We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d70359 commit 9a16536Copy full SHA for 9a16536
src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/Template/MultiSelectTemplate.cs
@@ -0,0 +1,17 @@
1
+
2
+namespace BotSharp.Abstraction.Messaging.Models.RichContent.Template
3
+{
4
+ public class MultiSelectTemplate : TextMessage
5
+ {
6
+ [JsonPropertyName("template_type")]
7
+ public string TemplateType => "multi-select";
8
+ public List<OptionElement> Options { get; set; } = new List<OptionElement>();
9
+ }
10
11
+ public class OptionElement
12
13
+ public string Title { get; set; } = string.Empty;
14
+ public string Type { get; set; } = string.Empty;
15
+ public string? Payload { get; set; }
16
17
+}
0 commit comments