ConflictResolution
Result of conflict resolution.
public sealed record ConflictResolution : IEquatable<ConflictResolution>
Constructors
ConflictResolution
public ConflictResolution(SyncLogEntry Winner, ConflictStrategy Strategy)
Result of conflict resolution.
| Parameter | Type | Description |
|---|---|---|
Winner |
SyncLogEntry |
The change that won the conflict. |
Strategy |
ConflictStrategy |
The strategy used to resolve. |
Properties
Winner
public SyncLogEntry Winner { get; init; }
The change that won the conflict.
Strategy
public ConflictStrategy Strategy { get; init; }
The strategy used to resolve.