13 lines
357 B
C#
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; }
|
|
} |