introducing Site Groups

This commit is contained in:
sbwalker
2026-01-27 16:51:30 -05:00
parent 6006e6f63c
commit 3be2b9c720
51 changed files with 2558 additions and 352 deletions

View File

@@ -0,0 +1,13 @@
using Oqtane.Models;
namespace Oqtane.Modules
{
public interface ISynchronizable
{
// You Must Set The "ServerManagerType" In Your IModule Interface
string ExtractModule(Module module);
void LoadModule(Module module, string content, string version);
}
}