[성현모] Config 기능 추가, Socket Recv Json, string 기능 분리
This commit is contained in:
20
Projects/HubX/HubX.Library/Config/WebApiConfig.cs
Normal file
20
Projects/HubX/HubX.Library/Config/WebApiConfig.cs
Normal file
@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Threading.Tasks;
|
||||
using SystemX.Core.Config;
|
||||
using SystemX.Core.Config.Model;
|
||||
|
||||
namespace HubX.Library.Config
|
||||
{
|
||||
public class WebApiConfig : WebCommonConfig
|
||||
{
|
||||
[JsonPropertyName("DataBase")]
|
||||
public List<SystemX.Core.Config.Model.DataBase>? DataBase { get; set; }
|
||||
|
||||
[JsonPropertyName("Socket")]
|
||||
public Server Socket { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user