Files
Khwezi Mngoma 4d2b37ace7
continuous-integration/drone/pr Build is passing
Completed token service
2026-06-12 20:48:12 +02:00

15 lines
321 B
C#

namespace LiteCharms.Features.Api.Configuration;
public sealed class PayfastSettings
{
public string? CheckoutUrl { get; set; }
public string? Passphrase { get; set; }
public string? MerchantId { get; set; }
public string? MerchantKey { get; set; }
public string[]? ValidHosts { get; set; }
}