[성현모] KMS 서비스 기능 추가

This commit is contained in:
SHM
2026-02-02 10:14:43 +09:00
parent cfc36e80d4
commit e673cc20cf
5 changed files with 165 additions and 54 deletions

View File

@ -4,5 +4,20 @@ namespace WebApi.Project.ProxyKMS.Models
{
public class ProxyKMSConfig : WebApiConfig
{
public List<API> API { get; set; } = new List<API>();
}
public class API
{
public string ApiName { get; set; } = string.Empty;
public List<Function> Functions { get; set; } = new List<Function>();
}
public class Function
{
public string Name { get; set; }
public string Method { get; set; }
public string Url { get; set; }
}
}