Controller fertig gefüllt, 2 Fehlende Klassen hinzugefügt

This commit is contained in:
NoKnownName
2025-05-23 12:33:33 +02:00
parent 2512929dd5
commit ce9a37d6be
64 changed files with 494 additions and 189 deletions

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Services
{
public class ConfigurationService
{
public string GetSetting(string key)
{
return null;
}
public int GetIntSetting(string key)
{
return 0;
}
public bool GetBoolSetting(string key)
{
return false;
}
public void Reload()
{
}
}
}