Refactored shasher payfast confirmation response handling
continuous-integration/drone/pr Build is passing

This commit is contained in:
Khwezi Mngoma
2026-06-01 16:36:33 +02:00
parent afc984f3bc
commit 5eb6dbc8b2
4 changed files with 95 additions and 15 deletions
@@ -0,0 +1,8 @@
namespace LiteCharms.Features.Models;
public sealed class PayfastWebhookPayload
{
public string? Amount { get; set; }
public string? ItemName { get; set; }
public string? MPaymentId { get; set; }
}