1
647556386
2026-01-14 ce586a4fd6aedc37df657952bca444bb42eb15d7
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}