[성현모] TRA DB목록 불러오기, 정의 자동추가

This commit is contained in:
SHM
2025-08-29 13:57:41 +09:00
parent 0f8199cadf
commit e6f0f6d575
13 changed files with 107 additions and 4 deletions

View File

@ -13,5 +13,8 @@ namespace WebClient.Library.Config
{
[JsonPropertyName("DataBase")]
public List<DataBase>? DataBase { get; set; }
[JsonPropertyName("ApplicationName")]
public string? ApplicationName { get; set; }
}
}

View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebClient.Library.Model
{
public class DBList
{
public string Name { get; set; }
}
}