21 lines
483 B
C#
21 lines
483 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 WebApi.Library.Config
|
|
{
|
|
public class WebApiConfig : WebCommonConfig
|
|
{
|
|
[JsonPropertyName("Auth")]
|
|
public Auth? Auth { get; set; }
|
|
|
|
[JsonPropertyName("DataBase")]
|
|
public List<DataBase>? DataBase { get; set; }
|
|
}
|
|
}
|