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