BotSharp/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/ElementAction.cs
2023-11-24 17:26:33 -06:00

16 lines
439 B
C#

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; }
}