Controller fertig gefüllt, 2 Fehlende Klassen hinzugefügt
This commit is contained in:
28
PenAndPaperManager/Services/ConfigurationService.cs
Normal file
28
PenAndPaperManager/Services/ConfigurationService.cs
Normal 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()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user