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