10 lines
251 B
C#
10 lines
251 B
C#
namespace Kreta.Client.GlobalApi.Configuration
|
|
{
|
|
public interface IGlobalApiConfiguration
|
|
{
|
|
string GlobalApiUrl { get; }
|
|
string TokenUrl { get; }
|
|
string ClientId { get; }
|
|
string ClientSecret { get; }
|
|
}
|
|
}
|