12 lines
300 B
C#
12 lines
300 B
C#
namespace Kreta.Core.Configuratiaton.Interface
|
|
{
|
|
public interface ILepConfiguration
|
|
{
|
|
string Url { get; }
|
|
string UserName { get; }
|
|
string Password { get; }
|
|
string ClientId { get; }
|
|
string ClientSecret { get; }
|
|
string ApiKey { get; }
|
|
}
|
|
}
|