2021-09-15 16:21:04 +02:00

14 lines
257 B
C#

using DigitalData.Modules.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ChangeloggerMVC
{
public interface ILogging
{
public LogConfig LogConfig { get; set; }
}
}