infrastructure for dealing with client cache invalidation in a multi-user environment

This commit is contained in:
Shaun Walker
2020-03-09 15:37:49 -04:00
parent 2cc3ed64f9
commit d7b3b444b5
12 changed files with 130 additions and 27 deletions

View File

@ -0,0 +1,13 @@
using Oqtane.Models;
using Oqtane.Shared;
using System;
using System.Collections.Generic;
namespace Oqtane.Infrastructure
{
public interface ISyncManager
{
List<SyncEvent> GetSyncEvents(DateTime LastSyncDate);
void AddSyncEvent(string EntityName, int EntityId);
}
}