modify query property names

This commit is contained in:
sbwalker
2024-06-28 16:15:28 -04:00
parent 0178e015e3
commit 3a9885abd8
3 changed files with 7 additions and 7 deletions

View File

@ -22,7 +22,7 @@ namespace Oqtane.Models
public string Url { get; set; }
public string Permissions { get; set; }
public string Permissions { get; set; } // comma delimited EntityName:EntityId,EntityName:EntityId
public string ContentModifiedBy { get; set; }

View File

@ -16,9 +16,9 @@ namespace Oqtane.Models
public List<string> EntityNames { get; set; } = new List<string>();
public DateTime BeginModifiedTimeUtc { get; set; }
public DateTime From { get; set; }
public DateTime EndModifiedTimeUtc { get; set; }
public DateTime To { get; set; }
public IDictionary<string, string> Properties { get; set; } = new Dictionary<string, string>();