mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-16 14:39:28 +00:00
10 lines
170 B
C#
10 lines
170 B
C#
using Microsoft.Extensions.Logging;
|
|
|
|
namespace System.Logging
|
|
{
|
|
public interface ICVLoggerProvider : ILoggerProvider
|
|
{
|
|
void LogEntry(Log log);
|
|
}
|
|
}
|