mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-15 04:11:38 +00:00
21 lines
489 B
C#
21 lines
489 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 : EventArgs
|
|
{
|
|
public int TenantId { get; set; }
|
|
public string EntityName { get; set; }
|
|
public int EntityId { get; set; }
|
|
public string Action { get; set; }
|
|
public DateTime ModifiedOn { get; set; }
|
|
}
|
|
}
|