1
wankeda
2025-03-13 8bcfb7ebce6ab1c014663eb3b46ffdc61ecf35f4
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}