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