1
647556386
2025-12-19 13696e4f5535623ec5fc0b6f37310e78c2c383c5
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}