mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-18 18:44:23 +00:00
22 lines
529 B
C#
22 lines
529 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 int SiteId { get; set; }
|
|
public string EntityName { get; set; }
|
|
public int EntityId { get; set; }
|
|
public string Action { get; set; }
|
|
public DateTime ModifiedOn { get; set; }
|
|
}
|
|
}
|