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

@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace Oqtane.Models
@ -15,6 +16,11 @@ namespace Oqtane.Models
public string ModifiedBy { get; set; }
public DateTime ModifiedOn { get; set; }
[NotMapped]
public DateTime SyncDate { get; set; }
[NotMapped]
public List<SyncEvent> SyncEvents { get; set; }
[NotMapped]
public string Path
{