PushChangesRequest
Request to push changes to the sync server.
public sealed record PushChangesRequest : IEquatable<PushChangesRequest>
Constructors
PushChangesRequest
public PushChangesRequest(string OriginId, List<SyncLogEntryDto> Changes)
Request to push changes to the sync server.
| Parameter | Type | Description |
|---|---|---|
OriginId |
String |
Origin ID of the pushing client. |
Changes |
SyncLogEntryDto> |
List of changes to push. |
Properties
OriginId
public string OriginId { get; init; }
Origin ID of the pushing client.
Changes
public List<SyncLogEntryDto> Changes { get; init; }
List of changes to push.