mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-19 02:54:22 +00:00
9 lines
149 B
C#
9 lines
149 B
C#
namespace Oqtane.Infrastructure
|
|
{
|
|
public interface IInstallable
|
|
{
|
|
bool Install(string version);
|
|
bool Uninstall();
|
|
}
|
|
}
|