kreta/Kreta.Client/CoreApi/Configuration/ICoreApiClientConfiguration.cs
2024-03-13 00:33:46 +01:00

15 lines
460 B
C#

namespace Kreta.Client.CoreApi.Configuration
{
public interface ICoreApiClientConfiguration
{
string IDPUrl { get; }
string DKTUrl { get; }
string PrivateClientId { get; }
string PrivateClientSecret { get; }
string Scope { get; }
string CoreApiIDPUrl { get; }
string CoreApiUrl { get; }
string CoreApiPrivateClientId { get; }
string CoreApiPrivateClientSecret { get; }
}
}