Sicherung

This commit is contained in:
Maier Stephan SI
2023-01-16 16:04:47 +01:00
parent 63512e77aa
commit 0b0508b042
98 changed files with 2454 additions and 188 deletions

View File

@@ -0,0 +1,12 @@
using NLog;
namespace DJ.Resolver
{
/// <summary>
/// Default interface to resolve a <see cref="LogEventInfo"/> for your personal needs
/// </summary>
public interface ILogEventInfoResolver
{
string Resolve(LogEventInfo logEventInfo);
}
}