9 lines
214 B
C#
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; }
|
|
}
|