Completed token service
continuous-integration/drone/pr Build is passing

This commit is contained in:
Khwezi Mngoma
2026-06-12 20:48:12 +02:00
parent 3daf192ce9
commit 4d2b37ace7
8 changed files with 68 additions and 20 deletions
@@ -0,0 +1,14 @@
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; }
}