BotSharp/src/Infrastructure/BotSharp.Abstraction/Messaging/ITemplateMessage.cs
2024-04-18 13:54:43 -05:00

11 lines
222 B
C#

using Newtonsoft.Json;
namespace BotSharp.Abstraction.Messaging;
public interface ITemplateMessage
{
[JsonPropertyName("template_type")]
[JsonProperty("template_type")]
string TemplateType => string.Empty;
}