29 lines
513 B
C#
29 lines
513 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|