mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
11 lines
291 B
C#
11 lines
291 B
C#
|
#nullable enable
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace BTCPayServer.Abstractions.Contracts;
|
||
|
|
||
|
public interface IStoreRepository
|
||
|
{
|
||
|
Task<T?> GetSettingAsync<T>(string storeId, string name) where T : class;
|
||
|
Task UpdateSetting<T>(string storeId, string name, T obj) where T : class;
|
||
|
}
|