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