Files
Orchard/src/Orchard.Web/Modules/Orchard.ImportExport/Services/IExportAction.cs
T

12 lines
393 B
C#

using Orchard.ContentManagement;
namespace Orchard.ImportExport.Services {
public interface IExportAction : IDependency {
int Priority { get; }
string Name { get; }
dynamic BuildEditor(dynamic shapeFactory);
dynamic UpdateEditor(dynamic shapeFactory, IUpdateModel updater);
void Execute(ExportActionContext exportActionContext);
}
}