diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-07-10 03:37:00 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-07-10 03:37:00 -0400 |
| commit | 07ab6a19e25b722513cf4731427ca04a08c6cb86 (patch) | |
| tree | 8a2c5c2bbdf5455aa304300baf6042b4c4d78bc5 /MediaBrowser.Model/Sync/SyncJob.cs | |
| parent | 1c1aa7c2c56c42a3d23fff945b2bde444ed5d4a3 (diff) | |
3.2.24.1
Diffstat (limited to 'MediaBrowser.Model/Sync/SyncJob.cs')
| -rw-r--r-- | MediaBrowser.Model/Sync/SyncJob.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Sync/SyncJob.cs b/MediaBrowser.Model/Sync/SyncJob.cs index 6709426b8..f0e262c50 100644 --- a/MediaBrowser.Model/Sync/SyncJob.cs +++ b/MediaBrowser.Model/Sync/SyncJob.cs @@ -59,7 +59,7 @@ namespace MediaBrowser.Model.Sync /// Gets or sets the status. /// </summary> /// <value>The status.</value> - public SyncJobStatus Status { get; set; } + public SyncJobStatus Status { get; set; } /// <summary> /// Gets or sets the user identifier. /// </summary> @@ -105,9 +105,12 @@ namespace MediaBrowser.Model.Sync public string PrimaryImageItemId { get; set; } public string PrimaryImageTag { get; set; } + public bool EnableAutomaticResync { get; set; } + public SyncJob() { RequestedItemIds = new List<string>(); + EnableAutomaticResync = true; } } } |
