14 lines
351 B
C#
14 lines
351 B
C#
using Prism.Events;
|
|
|
|
namespace YY.Admin.Core.Events;
|
|
|
|
public class SyncConflictPayload
|
|
{
|
|
public string EntityName { get; set; } = string.Empty;
|
|
public int PushedCount { get; set; }
|
|
public int ConflictCount { get; set; }
|
|
public int NewRecordsPushed { get; set; }
|
|
}
|
|
|
|
public class SyncConflictEvent : PubSubEvent<SyncConflictPayload> { }
|