From bb031f553b940d21fa89f319d294745484c2234e Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 8 May 2014 16:26:20 -0400 Subject: fix portable and 3.5 project references --- .../FileOrganization/FileOrganizationQuery.cs | 33 ---------------------- 1 file changed, 33 deletions(-) delete mode 100644 MediaBrowser.Model/FileOrganization/FileOrganizationQuery.cs (limited to 'MediaBrowser.Model/FileOrganization/FileOrganizationQuery.cs') diff --git a/MediaBrowser.Model/FileOrganization/FileOrganizationQuery.cs b/MediaBrowser.Model/FileOrganization/FileOrganizationQuery.cs deleted file mode 100644 index ce5750757..000000000 --- a/MediaBrowser.Model/FileOrganization/FileOrganizationQuery.cs +++ /dev/null @@ -1,33 +0,0 @@ - -namespace MediaBrowser.Model.FileOrganization -{ - public class FileOrganizationResultQuery - { - /// - /// Skips over a given number of items within the results. Use for paging. - /// - /// The start index. - public int? StartIndex { get; set; } - - /// - /// The maximum number of items to return - /// - /// The limit. - public int? Limit { get; set; } - } - - public class EpisodeFileOrganizationRequest - { - public string ResultId { get; set; } - - public string SeriesId { get; set; } - - public int SeasonNumber { get; set; } - - public int EpisodeNumber { get; set; } - - public int? EndingEpisodeNumber { get; set; } - - public bool RememberCorrection { get; set; } - } -} -- cgit v1.2.3