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