12 lines
356 B
C#
12 lines
356 B
C#
using Apimanager_backend.Models;
|
|
|
|
namespace Apimanager_backend.Services
|
|
{
|
|
public interface ISystemConfigService
|
|
{
|
|
public Task<SystemConfig> UpdateSystemConfig(string configName,string configBody);
|
|
public Task<SystemConfig> GetSystemConfig(string configName);
|
|
public Task<List<SystemConfig>> GetAllSystemConfig();
|
|
}
|
|
}
|