15 lines
346 B
C#
15 lines
346 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 T GetSection<T>(string sectionName) where T : class, new() { return null; }
|
|
}
|
|
}
|