[성현모] AuthApi 분리
This commit is contained in:
20
Projects/WebApi/WebApi.Library/Config/WebApiConfig.cs
Normal file
20
Projects/WebApi/WebApi.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 WebApi.Library.Config
|
||||
{
|
||||
public class WebApiConfig : WebCommonConfig
|
||||
{
|
||||
[JsonPropertyName("Auth")]
|
||||
public Auth? Auth { get; set; }
|
||||
|
||||
[JsonPropertyName("DataBase")]
|
||||
public List<DataBase>? DataBase { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user