8 lines
162 B
C#
8 lines
162 B
C#
|
|
namespace BotSharp.Abstraction.Messaging;
|
||
|
|
|
||
|
|
public interface ITemplateMessage
|
||
|
|
{
|
||
|
|
[JsonPropertyName("template_type")]
|
||
|
|
string TemplateType => string.Empty;
|
||
|
|
}
|