wanshenmean
2024-09-12 aa286778955aec6cbb806d9fd79aded250f09d19
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}