1
647556386
2026-01-21 ef96a52b953e3ce094bba9f644a00a3698e48726
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}