mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-16 22:39:29 +00:00
8 lines
109 B
C#
8 lines
109 B
C#
namespace System.Logging
|
|
{
|
|
public interface ILogsWriter
|
|
{
|
|
void WriteLog(Log log);
|
|
}
|
|
}
|