7 lines
264 B
C#
7 lines
264 B
C#
namespace RecNet.Application.Services.Configuration;
|
|
|
|
public interface IConfigService
|
|
{
|
|
Task<T?> GetAsync<T>(string key, T? defaultValue = default, CancellationToken ct = default);
|
|
Task SetAsync<T>(string key, T value, CancellationToken ct = default);
|
|
} |