mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-14 18:54:32 +00:00
13 lines
305 B
C#
13 lines
305 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Oqtane.Models;
|
|
|
|
namespace Oqtane.Infrastructure
|
|
{
|
|
public interface ISyncManager
|
|
{
|
|
List<SyncEvent> GetSyncEvents(int tenantId, DateTime lastSyncDate);
|
|
void AddSyncEvent(int tenantId, string entityName, int entityId);
|
|
}
|
|
}
|