mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-18 10:34:22 +00:00
14 lines
288 B
C#
14 lines
288 B
C#
using Oqtane.Models;
|
|
|
|
namespace Oqtane.Modules
|
|
{
|
|
public interface IPortable
|
|
{
|
|
// You Must Set The "ServerManagerType" In Your IModule Interface
|
|
|
|
string ExportModule(Module module);
|
|
|
|
void ImportModule(Module module, string content, string version);
|
|
}
|
|
}
|