|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Taloyhtio.GeneralApi.IntegrationUtility.Services
|
|
{
|
|
public interface ISettingsProvider
|
|
{
|
|
T Get<T>(string key) where T : class;
|
|
T? GetVal<T>(string key) where T : struct;
|
|
}
|
|
}
|