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

8 lines
162 B
C#
Raw Normal View History

2023-11-24 23:26:33 +00:00
namespace BotSharp.Abstraction.Messaging;
public interface ITemplateMessage
{
[JsonPropertyName("template_type")]
string TemplateType => string.Empty;
}