oqtane.framework/Oqtane.Server/Infrastructure/Interfaces/IInstallable.cs

9 lines
149 B
C#

namespace Oqtane.Infrastructure
{
public interface IInstallable
{
bool Install(string version);
bool Uninstall();
}
}