Files
Thanakarn Klangkasame d266463c9f Fix Redundance Reference
2025-10-03 10:33:55 +07:00

13 lines
357 B
C#

namespace AMREZ.EOP.Contracts.DTOs.Integrations.SCB.OAuth;
public sealed class OAuthRequest
{
public OAuthRequest(string applicationKey, string applicationSecret)
{
ApplicationKey = applicationKey;
ApplicationSecret = applicationSecret;
}
public string ApplicationKey { get; }
public string ApplicationSecret { get; }
}