2023-10-27 19:05:18 +00:00
|
|
|
|
|
|
|
|
namespace BotSharp.Abstraction.Messaging.Models.RichContent.Template
|
|
|
|
|
{
|
|
|
|
|
public class CommonTemplate<T>
|
|
|
|
|
{
|
2023-10-29 01:56:21 +00:00
|
|
|
[JsonPropertyName("template_type")]
|
2023-10-27 19:05:18 +00:00
|
|
|
public string TemplateType { get; set; } = string.Empty;
|
|
|
|
|
public T Elements { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|