oqtane.framework/Oqtane.Server/Infrastructure/Interfaces/ISyncManager.cs
Pavel Vesely 5b3feaf26f Server naming fixes and cleanup
Server is now completely cleaned up and without warnings
2020-03-15 11:53:24 +01:00

13 lines
288 B
C#

using System;
using System.Collections.Generic;
using Oqtane.Models;
namespace Oqtane.Infrastructure.Interfaces
{
public interface ISyncManager
{
List<SyncEvent> GetSyncEvents(DateTime lastSyncDate);
void AddSyncEvent(string entityName, int entityId);
}
}