15 lines
321 B
C#
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; }
|
|
}
|