25 lines
665 B
C#
25 lines
665 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;
|
|
using WebClient.Library.Model;
|
|
|
|
namespace WebClient.Library.Config
|
|
{
|
|
public class WebClientConfig : WebCommonConfig
|
|
{
|
|
[JsonPropertyName("DataBase")]
|
|
public List<DataBase>? DataBase { get; set; }
|
|
|
|
[JsonPropertyName("ApplicationName")]
|
|
public string? ApplicationName { get; set; }
|
|
|
|
[JsonPropertyName("GridDisableFilter")]
|
|
public List<GridDisableFilter>? GridDisableFilter { get; set; }
|
|
}
|
|
}
|