Files
BeWoPlaner/Service/BeWoServiceEnums.cs
Rene Evertz 78360c91c8 Refactor: Attribute
Weniger Unklarheit bzgl Abfragen bei jeweiligen Service Endpunkten
2025-06-17 15:46:04 +02:00

42 lines
712 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BeWo.Service
{
public enum WebConfigSetting
{
OpenWebUIUrl,
XRechnungApiUrl,
StoredFilesFolderPath,
StoredTenantFilesFolderPath,
HelloWorldPdfLocation,
ServiceLogFilePath,
WCFErrorLogFilePath,
JsonErrorLogFilePath,
ApiServiceTestFilePath
}
[DefaultValue(None)]
public enum WebSecretConfigSetting
{
None = -1,
OpenWebUIKey,
GetGkvSumApiKey,
DownloadReportApiKey,
OpenrouteServiceApiKey,
GoogleDistanceMatrixApiKey,
GkvSecretKey,
}
[DefaultValue(None)]
public enum IPAddressList
{
None = -1,
AdminApi
}
}