1
xxyy
2025-03-18 a2b957aff35477ef51e0ad641c615aa98eb2c9b3
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}