kreta/Kreta.Core/Configuratiaton/Interface/ILepConfiguration.cs
2024-03-13 00:33:46 +01:00

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