Skip to content

Commit 0c6f619

Browse files
authored
feat: add disableMarkCompletedWhenConfirmed (#946)
* Add `DisableMarkCompletedWhenConfirmed` flag to SyncAdapterSettings * Format
1 parent f146533 commit 0c6f619

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

src/Storage.Interface/Models/SyncAdapterSettings.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,13 @@ public class SyncAdapterSettings
6767
[DefaultValue(false)]
6868
public bool DisableSyncStatus { get; set; }
6969

70+
/// <summary>
71+
/// Gets or sets the flag controlling whether the sync adapter should set status to completed when confirmed.
72+
/// </summary>
73+
[JsonProperty(PropertyName = "disableMarkCompletedWhenConfirmed")]
74+
[DefaultValue(false)]
75+
public bool DisableMarkCompletedWhenConfirmed { get; set; }
76+
7077
/// <summary>
7178
/// Gets or sets the flag controlling whether the sync adapter should disable synchronizing (overwrite) the title.
7279
/// </summary>

0 commit comments

Comments
 (0)