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); } }