Taylohtio/GeneralApi/GeneralApi.Core/Services/ISettingsProvider.cs

11 lines
216 B
C#

using System.Collections.Generic;
namespace Taloyhtio.GeneralApi.Core.Services
{
public interface ISettingsProvider
{
T Get<T>(string key);
IEnumerable<T> GetArray<T>(string key);
}
}