11 lines
552 B
C#
11 lines
552 B
C#
namespace AMREZ.EOP.Domain.Shared.Payments;
|
|
|
|
public sealed class SCBOptions
|
|
{
|
|
public string BaseUrl { get; init; } = "https://api.partners.scb/partners";
|
|
public string SCBResourceOwnerId { get; init; } = "l7eb41a014586448c6be6cfaecce1f5b5e";
|
|
public string SCBApplicationKey { get; init; } = "l7eb41a014586448c6be6cfaecce1f5b5e";
|
|
public string SCBApplicationSecret { get; init; } = "5f20b35809034d16b7930af95ab6a7de";
|
|
public string DefaultLanguage { get; init; } = "EN";
|
|
public string DefaultSendingBank { get; init; } = "014";
|
|
} |