10 lines
251 B
C#
10 lines
251 B
C#
namespace Kreta.Client.KGR.Configuration
|
|
{
|
|
public interface IKGRClientConfiguration
|
|
{
|
|
string IDPUrl { get; }
|
|
string KGRUrl { get; }
|
|
string PrivateClientId { get; }
|
|
string PrivateClientSecret { get; }
|
|
}
|
|
}
|