-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
using uSync.BackOffice.SyncHandlers.Models; | ||
|
||
namespace uSync.BackOffice.Models; | ||
|
||
public class SyncFinalActionRequest | ||
Check warning on line 8 in uSync.BackOffice/Models/SyncFinalActionRequest.cs
|
||
{ | ||
public required Guid RequestId { get; set; } | ||
Check warning on line 10 in uSync.BackOffice/Models/SyncFinalActionRequest.cs
|
||
public HandlerActions HandlerAction { get; set; } = HandlerActions.None; | ||
Check warning on line 11 in uSync.BackOffice/Models/SyncFinalActionRequest.cs
|
||
public required SyncActionOptions ActionOptions { get; set; } | ||
Check warning on line 12 in uSync.BackOffice/Models/SyncFinalActionRequest.cs
|
||
public IEnumerable<uSyncAction> Actions { get; set; } = []; | ||
Check warning on line 13 in uSync.BackOffice/Models/SyncFinalActionRequest.cs
|
||
public string? Username { get; set; } | ||
Check warning on line 14 in uSync.BackOffice/Models/SyncFinalActionRequest.cs
|
||
public uSyncCallbacks? Callbacks { get; set; } | ||
Check warning on line 15 in uSync.BackOffice/Models/SyncFinalActionRequest.cs
|
||
} | ||
|