Files
oqtane.framework/Oqtane.Server/Modules/ISynchronizable.cs
2026-02-11 08:59:10 -05:00

15 lines
320 B
C#

using System;
using Oqtane.Models;
namespace Oqtane.Modules
{
public interface ISynchronizable
{
// You Must Set The "ServerManagerType" In Your IModule Interface
string ExtractModule(Module module, DateTime lastSynchronizedOn);
void LoadModule(Module module, string content);
}
}