21 lines
520 B
C#
21 lines
520 B
C#
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; }
|
|
}
|
|
}
|