11 lines
222 B
C#
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;
|
|
}
|