11 lines
487 B
C#
11 lines
487 B
C#
using SimApi.Configurations;
|
|
using SimApi.Helpers;
|
|
|
|
namespace SimApi.AuthGate;
|
|
|
|
public class SimApiAuthGateClient(SimApiOptions apiOptions) : SimApiHttpClient
|
|
{
|
|
public override string Server { get; init; } = apiOptions.SimApiAuthGateOptions.Server ?? string.Empty;
|
|
public override string AppId { get; init; } = apiOptions.SimApiAuthGateOptions.AppId ?? string.Empty;
|
|
public override string AppKey { get; init; } = apiOptions.SimApiAuthGateOptions.AppKey ?? string.Empty;
|
|
} |