Fix Redundance Reference

This commit is contained in:
Thanakarn Klangkasame
2025-10-03 10:33:55 +07:00
parent 33470d5fd4
commit d266463c9f
20 changed files with 440 additions and 29 deletions

View File

@@ -1,6 +1,11 @@
namespace AMREZ.EOP.Domain.Shared.Payments;
public class SCBOptions
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";
}