14 lines
344 B
C#
14 lines
344 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Xml;
|
|
|
|
namespace umbraco.interfaces {
|
|
public interface IPackageAction {
|
|
bool Execute(string packageName, XmlNode xmlData);
|
|
string Alias();
|
|
bool Undo(string packageName, XmlNode xmlData);
|
|
XmlNode SampleXml();
|
|
}
|
|
}
|