8 lines
301 B
C#
8 lines
301 B
C#
namespace RecNet.Domain.Configuration;
|
|
|
|
public interface IServerConfigRepository
|
|
{
|
|
Task<ServerConfig?> GetAsync(string key, CancellationToken ct = default);
|
|
Task SetAsync(string key, string value, CancellationToken ct = default);
|
|
Task SaveChangesAsync(CancellationToken ct = default);
|
|
} |