Taylohtio/GeneralApi/GeneralApi.IntegrationUtility/Services/ISettingsProvider.cs

14 lines
301 B
C#

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;
}
}