BotSharp/src/Infrastructure/BotSharp.Abstraction/Messaging/ITemplateMessage.cs

11 lines
222 B
C#
Raw Normal View History

2024-04-18 18:54:43 +00:00
using Newtonsoft.Json;
2023-11-24 23:26:33 +00:00
namespace BotSharp.Abstraction.Messaging;
public interface ITemplateMessage
{
[JsonPropertyName("template_type")]
2024-04-18 18:54:43 +00:00
[JsonProperty("template_type")]
2023-11-24 23:26:33 +00:00
string TemplateType => string.Empty;
}