Files
amrez-nova-eop-services-api/AMREZ.EOP.Domain/Shared/Payments/SCBOptions.cs
Thanakarn Klangkasame d266463c9f Fix Redundance Reference
2025-10-03 10:33:55 +07:00

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";
}