21 lines
475 B
C#
21 lines
475 B
C#
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 bool Reload { get; set; }
|
|
public DateTime ModifiedOn { get; set; }
|
|
}
|
|
}
|