26 lines
426 B
C#
26 lines
426 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,
|
|
HelloWorldPdfLocation
|
|
}
|
|
|
|
public enum WebSecretConfigSetting
|
|
{
|
|
OpenWebUIKey,
|
|
GetGkvSumApiKey,
|
|
DownloadReportApiKey,
|
|
OpenrouteServiceApiKey,
|
|
GoogleDistanceMatrixApiKey,
|
|
}
|
|
}
|