BotSharp/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/ElementAction.cs

16 lines
439 B
C#
Raw Normal View History

2023-11-24 23:26:33 +00:00
namespace BotSharp.Abstraction.Messaging.Models.RichContent;
public class ElementAction
{
public string Type { get; set; }
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string Url { get; set; }
[JsonPropertyName("webview_height_ratio")]
public string WebViewHeightRatio { get; set; }
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string Payload { get; set; }
}