refactoring, enhancements, and some fixes

This commit is contained in:
Shaun Walker
2021-06-10 08:16:02 -04:00
parent 82c05a841f
commit bc720555c4
30 changed files with 436 additions and 244 deletions

View File

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
namespace Oqtane.Models
{
public class Sync
{
public DateTime SyncDate { get; set; }
public List<SyncEvent> SyncEvents { get; set; }
}
public class SyncEvent
{
public int TenantId { get; set; }
public string EntityName { get; set; }
public int EntityId { get; set; }
public DateTime ModifiedOn { get; set; }
}
}