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