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,12 @@
using System;
namespace Oqtane.Models
{
public class SyncEvent
{
public int TenantId { get; set; }
public string EntityName { get; set; }
public int EntityId { get; set; }
public DateTime ModifiedOn { get; set; }
}
}