erp-platform/api/modules/Kurs.Sender/WhatsApp/WhatsAppPostMessageInput.cs
Sedat ÖZTÜRK e1a9562b22 init project
2025-05-06 09:45:49 +03:00

33 lines
841 B
C#

namespace Kurs.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; }
}
}
}
}