15 lines
483 B
C#
15 lines
483 B
C#
using Umbraco.Core.IO;
|
|
using Umbraco.Core.Models;
|
|
|
|
namespace Umbraco.Core.Persistence.Repositories.Implement
|
|
{
|
|
internal class PartialViewMacroRepository : PartialViewRepository, IPartialViewMacroRepository
|
|
{
|
|
public PartialViewMacroRepository(IFileSystems fileSystems, IIOHelper ioHelper)
|
|
: base(fileSystems.MacroPartialsFileSystem, ioHelper)
|
|
{ }
|
|
|
|
protected override PartialViewType ViewType => PartialViewType.PartialViewMacro;
|
|
}
|
|
}
|