refactoring, enhancements, and some fixes
This commit is contained in:
19
Oqtane.Shared/Models/Sync.cs
Normal file
19
Oqtane.Shared/Models/Sync.cs
Normal 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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user