oqtane.framework/Oqtane.Server/Modules/IPortable.cs

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