mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-25 14:23:10 +00:00
14 lines
292 B
C#
14 lines
292 B
C#
using Oqtane.Models;
|
|
|
|
namespace Oqtane.Modules
|
|
{
|
|
public interface IPortable
|
|
{
|
|
// You Must Set The "ServerAssemblyName" In Your IModule Interface
|
|
|
|
string ExportModule(Module Module);
|
|
|
|
void ImportModule(Module Module, string Content, string Version);
|
|
}
|
|
}
|