16 lines
523 B
C#
16 lines
523 B
C#
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)
|
|
: base(fileSystems.MacroPartialsFileSystem)
|
|
{ }
|
|
|
|
protected override PartialViewType ViewType => PartialViewType.PartialViewMacro;
|
|
}
|
|
}
|