18 lines
330 B
C#
18 lines
330 B
C#
using System;
|
|
|
|
namespace YLPublishTool
|
|
{
|
|
public interface IPublishContext
|
|
{
|
|
string GetProperty(string name);
|
|
|
|
void SetProperty(string name, string value);
|
|
|
|
void LogDebug(string message);
|
|
|
|
void LogInfo(string message);
|
|
|
|
void LogError(string message, Exception ex = null);
|
|
}
|
|
}
|