25 lines
452 B
C#
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;
|
|
}
|
|
|
|
|
|
}
|
|
}
|