mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
12 lines
393 B
C#
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);
|
|
}
|
|
} |