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