mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
19 lines
626 B
C#
19 lines
626 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.Settings;
|
|
|
|
namespace Yi.Framework.SettingManagement.Domain;
|
|
|
|
public interface ISettingManagementStore
|
|
{
|
|
Task<string> GetOrNullAsync(string name, string providerName, string providerKey);
|
|
|
|
Task<List<SettingValue>> GetListAsync(string providerName, string providerKey);
|
|
|
|
Task<List<SettingValue>> GetListAsync(string[] names, string providerName, string providerKey);
|
|
|
|
Task SetAsync(string name, string value, string providerName, string providerKey);
|
|
|
|
Task DeleteAsync(string name, string providerName, string providerKey);
|
|
}
|