1
647556386
2026-03-19 0a167891e323c630741072a6c6d8a430b2f698b5
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}