Files
zszq-trs/Tools/YLPublishTool/Abstracts/IPublishContext.cs
T
2024-05-09 14:06:26 +08:00

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