├── .gitignore ├── Controllers ├── ping.cs ├── webhook.cs └── whatsapp.cs ├── LICENSE ├── Models ├── SendMessageTemplate.cs ├── SendTextMessage.cs ├── WhatsAppConfig.cs └── WhatsAppWebhook.cs ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── Startup.cs ├── WhatsAppApiDotnet.csproj ├── WhatsAppApiDotnet.sln └── appsettings.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeetishRaj/WhatsAppApiDotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /Controllers/ping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeetishRaj/WhatsAppApiDotnet/HEAD/Controllers/ping.cs -------------------------------------------------------------------------------- /Controllers/webhook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeetishRaj/WhatsAppApiDotnet/HEAD/Controllers/webhook.cs -------------------------------------------------------------------------------- /Controllers/whatsapp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeetishRaj/WhatsAppApiDotnet/HEAD/Controllers/whatsapp.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeetishRaj/WhatsAppApiDotnet/HEAD/LICENSE -------------------------------------------------------------------------------- /Models/SendMessageTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeetishRaj/WhatsAppApiDotnet/HEAD/Models/SendMessageTemplate.cs -------------------------------------------------------------------------------- /Models/SendTextMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeetishRaj/WhatsAppApiDotnet/HEAD/Models/SendTextMessage.cs -------------------------------------------------------------------------------- /Models/WhatsAppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeetishRaj/WhatsAppApiDotnet/HEAD/Models/WhatsAppConfig.cs -------------------------------------------------------------------------------- /Models/WhatsAppWebhook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeetishRaj/WhatsAppApiDotnet/HEAD/Models/WhatsAppWebhook.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeetishRaj/WhatsAppApiDotnet/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeetishRaj/WhatsAppApiDotnet/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeetishRaj/WhatsAppApiDotnet/HEAD/README.md -------------------------------------------------------------------------------- /Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeetishRaj/WhatsAppApiDotnet/HEAD/Startup.cs -------------------------------------------------------------------------------- /WhatsAppApiDotnet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeetishRaj/WhatsAppApiDotnet/HEAD/WhatsAppApiDotnet.csproj -------------------------------------------------------------------------------- /WhatsAppApiDotnet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeetishRaj/WhatsAppApiDotnet/HEAD/WhatsAppApiDotnet.sln -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeetishRaj/WhatsAppApiDotnet/HEAD/appsettings.json --------------------------------------------------------------------------------