sozsoft-platform/api/modules/Sozsoft.Sender/WhatsApp/WhatsAppPostMessageInput.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

34 lines
845 B
C#

namespace Sozsoft.Sender.WhatsApp;
public class WhatsAppPostMessageInput
{
public string messaging_product { get; set; }
public string to { get; set; }
public string type { get; set; }
public Template template { get; set; }
public class Template
{
public string name { get; set; }
public Language language { get; set; }
public List<Component> components { get; set; }
public class Language
{
public string code { get; set; }
}
public class Component
{
public string type { get; set; }
public List<Parameter> parameters { get; set; }
public class Parameter
{
public string type { get; set; }
public string text { get; set; }
}
}
}
}