From 48facb797ed912e4ea6b04b17d1ff190ac2daac4 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 12 Sep 2018 19:26:21 +0200 Subject: Update to 3.5.2 and .net core 2.1 --- MediaBrowser.Model/Sync/SyncJobQuery.cs | 44 --------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 MediaBrowser.Model/Sync/SyncJobQuery.cs (limited to 'MediaBrowser.Model/Sync/SyncJobQuery.cs') diff --git a/MediaBrowser.Model/Sync/SyncJobQuery.cs b/MediaBrowser.Model/Sync/SyncJobQuery.cs deleted file mode 100644 index ed9e5ae60..000000000 --- a/MediaBrowser.Model/Sync/SyncJobQuery.cs +++ /dev/null @@ -1,44 +0,0 @@ - -namespace MediaBrowser.Model.Sync -{ - public class SyncJobQuery - { - /// - /// Gets or sets the start index. - /// - /// The start index. - public int? StartIndex { get; set; } - /// - /// Gets or sets the limit. - /// - /// The limit. - public int? Limit { get; set; } - /// - /// Gets or sets the target identifier. - /// - /// The target identifier. - public string TargetId { get; set; } - /// - /// Gets or sets the user identifier. - /// - /// The user identifier. - public string UserId { get; set; } - public string ExcludeTargetIds { get; set; } - public string ItemId { get; set; } - /// - /// Gets or sets the status. - /// - /// The status. - public SyncJobStatus[] Statuses { get; set; } - /// - /// Gets or sets a value indicating whether [synchronize new content]. - /// - /// null if [synchronize new content] contains no value, true if [synchronize new content]; otherwise, false. - public bool? SyncNewContent { get; set; } - - public SyncJobQuery() - { - Statuses = new SyncJobStatus[] { }; - } - } -} -- cgit v1.2.3