Files
Umbraco-CMS/src/Umbraco.Core/IO/SupportingFileSystems.cs

12 lines
248 B
C#
Raw Normal View History

2019-01-09 17:39:32 +01:00
using Umbraco.Core.Composing;
namespace Umbraco.Core.IO
{
2019-01-14 08:53:04 +01:00
public class SupportingFileSystems : TargetedServiceFactory<IFileSystem>
2019-01-09 17:39:32 +01:00
{
public SupportingFileSystems(IFactory factory)
: base(factory)
{ }
}
2019-01-14 08:53:04 +01:00
}