Files
Umbraco-CMS/src/umbraco.interfaces/IPackageAction.cs
2018-11-22 14:05:51 +00:00

15 lines
365 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Xml;
namespace umbraco.interfaces {
public interface IPackageAction : IDiscoverable
{
bool Execute(string packageName, XmlNode xmlData);
string Alias();
bool Undo(string packageName, XmlNode xmlData);
XmlNode SampleXml();
}
}