11 lines
294 B
C#
11 lines
294 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);
|
|
}
|
|
}
|