2023-03-08 09:33:11 +01:00

25 lines
452 B
C#

using DigitalData.Modules.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ReportViewer
{
internal class UILoader
{
public LogConfig LogConfig { get; }
public Config Config { get; }
public UILoader(LogConfig logConfig, Config config)
{
LogConfig = logConfig;
Config = config;
}
}
}