54 lines
882 B
C#
54 lines
882 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,
|
|
OllamaUrl,
|
|
XRechnungApiUrl,
|
|
StoredFilesFolderPath,
|
|
StoredTenantFilesFolderPath,
|
|
HelloWorldPdfLocation,
|
|
ServiceLogFilePath,
|
|
WCFErrorLogFilePath,
|
|
JsonErrorLogFilePath,
|
|
ApiServiceTestFilePath,
|
|
AiServiceLogFilePath,
|
|
AiRootPath,
|
|
BeWoPlanerServiceRoot
|
|
}
|
|
|
|
[DefaultValue(None)]
|
|
public enum WebSecretConfigSetting
|
|
{
|
|
None = -1,
|
|
OpenWebUIKey,
|
|
OllamaKey,
|
|
GetGkvSumApiKey,
|
|
DownloadReportApiKey,
|
|
OpenrouteServiceApiKey,
|
|
GoogleDistanceMatrixApiKey,
|
|
GkvSecretKey,
|
|
}
|
|
|
|
[DefaultValue(None)]
|
|
public enum IPAddressList
|
|
{
|
|
None = -1,
|
|
AdminApi
|
|
}
|
|
|
|
[DefaultValue(None)]
|
|
public enum SpecialConfig
|
|
{
|
|
None = -1,
|
|
AiConfig,
|
|
}
|
|
}
|