29 lines
495 B
C#
29 lines
495 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BeWo.Service
|
|
{
|
|
public enum WebConfigSetting
|
|
{
|
|
OpenWebUIUrl,
|
|
XRechnungApiUrl,
|
|
StoredFilesFolderPath,
|
|
StoredTenantFilesFolderPath,
|
|
HelloWorldPdfLocation,
|
|
ServiceLogFilePath
|
|
}
|
|
|
|
public enum WebSecretConfigSetting
|
|
{
|
|
OpenWebUIKey,
|
|
GetGkvSumApiKey,
|
|
DownloadReportApiKey,
|
|
OpenrouteServiceApiKey,
|
|
GoogleDistanceMatrixApiKey,
|
|
GkvSecretKey,
|
|
}
|
|
}
|