Files

8 lines
109 B
C#

namespace System.Logging
{
public interface ILogsWriter
{
void WriteLog(Log log);
}
}