[성현모] UniqueKeyApi REST 완료

This commit is contained in:
SHM
2025-08-05 08:46:05 +09:00
parent d138088df9
commit afa4940880
15 changed files with 647 additions and 13 deletions

View File

@ -0,0 +1,12 @@
using System.Text.Json.Serialization;
using SystemX.Core.Config.Model;
using WebApi.Library.Config;
namespace WebApi.Project.UniqueKeyApi.Models
{
public class UniqueKeyApiConfig : WebApiConfig
{
[JsonPropertyName("Socket")]
public Server Socket { get; set; }
}
}