using Umbraco.Cms.Core.IO; using Umbraco.Cms.Core.Models; using Umbraco.Cms.Core.Persistence.Repositories; namespace Umbraco.Cms.Infrastructure.Persistence.Repositories.Implement { internal class PartialViewMacroRepository : PartialViewRepository, IPartialViewMacroRepository { public PartialViewMacroRepository(FileSystems fileSystems, IIOHelper ioHelper) : base(fileSystems.MacroPartialsFileSystem, ioHelper) { } protected override PartialViewType ViewType => PartialViewType.PartialViewMacro; } }