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/SyncJobItemQuery.cs | 47 ----------------------------- 1 file changed, 47 deletions(-) delete mode 100644 MediaBrowser.Model/Sync/SyncJobItemQuery.cs (limited to 'MediaBrowser.Model/Sync/SyncJobItemQuery.cs') diff --git a/MediaBrowser.Model/Sync/SyncJobItemQuery.cs b/MediaBrowser.Model/Sync/SyncJobItemQuery.cs deleted file mode 100644 index 74d3ac096..000000000 --- a/MediaBrowser.Model/Sync/SyncJobItemQuery.cs +++ /dev/null @@ -1,47 +0,0 @@ - -namespace MediaBrowser.Model.Sync -{ - public class SyncJobItemQuery - { - /// - /// 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 job identifier. - /// - /// The job identifier. - public string JobId { get; set; } - /// - /// Gets or sets the item identifier. - /// - /// The item identifier. - public string ItemId { get; set; } - /// - /// Gets or sets the target identifier. - /// - /// The target identifier. - public string TargetId { get; set; } - /// - /// Gets or sets the status. - /// - /// The status. - public SyncJobItemStatus[] Statuses { get; set; } - /// - /// Gets or sets a value indicating whether [add metadata]. - /// - /// true if [add metadata]; otherwise, false. - public bool AddMetadata { get; set; } - - public SyncJobItemQuery() - { - Statuses = new SyncJobItemStatus[] {}; - } - } -} -- cgit v1.2.3