11 lines
202 B
C#
11 lines
202 B
C#
using Umbraco.Core.IO;
|
|
using Umbraco.Core.Logging;
|
|
|
|
namespace Umbraco.Core.Configuration
|
|
{
|
|
public interface IConfigsFactory
|
|
{
|
|
Configs Create(IIOHelper ioHelper, ILogger logger);
|
|
}
|
|
}
|