Files
BeWoPlaner/Service/BeWoServiceEnums.cs

51 lines
824 B
C#
Raw Normal View History

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
{
2025-11-28 12:36:25 +01:00
OllamaUrl,
2025-12-02 17:13:49 +01:00
Ollama2Url,
XRechnungApiUrl,
StoredFilesFolderPath,
StoredTenantFilesFolderPath,
HelloWorldPdfLocation,
2026-04-21 14:39:48 +02:00
BeWoPlanerServiceRoot,
AiPromptsUrl
}
[DefaultValue(None)]
public enum WebSecretConfigSetting
{
None = -1,
2025-11-28 12:36:25 +01:00
OllamaKey,
Ollama2Key,
GetGkvSumApiKey,
DownloadReportApiKey,
OpenrouteServiceApiKey,
GoogleDistanceMatrixApiKey,
GkvSecretKey,
2026-05-26 13:03:08 +02:00
AppStatusApiKey
}
[DefaultValue(None)]
public enum IPAddressList
{
None = -1,
AdminApi
}
[DefaultValue(None)]
public enum SpecialConfig
{
None = -1,
2026-02-20 12:51:18 +01:00
CustomFunctionPreSystemPrompt,
CustomPreSystemPrompt
}
}