Files
components/LiteCharms.Features/Models/PayfastWebhookPayload.cs
T
Khwezi Mngoma 5eb6dbc8b2
continuous-integration/drone/pr Build is passing
Refactored shasher payfast confirmation response handling
2026-06-01 16:36:33 +02:00

9 lines
214 B
C#

namespace LiteCharms.Features.Models;
public sealed class PayfastWebhookPayload
{
public string? Amount { get; set; }
public string? ItemName { get; set; }
public string? MPaymentId { get; set; }
}