10 lines
180 B
C#
10 lines
180 B
C#
namespace YLPublishTool
|
|
{
|
|
public interface IPublishAction
|
|
{
|
|
void SetProperty(string name, string value);
|
|
|
|
void Execute(IPublishContext context);
|
|
}
|
|
}
|