aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Querying/EpisodeQuery.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Querying/EpisodeQuery.cs')
-rw-r--r--MediaBrowser.Model/Querying/EpisodeQuery.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Querying/EpisodeQuery.cs b/MediaBrowser.Model/Querying/EpisodeQuery.cs
index ab9b246c8..406ac9844 100644
--- a/MediaBrowser.Model/Querying/EpisodeQuery.cs
+++ b/MediaBrowser.Model/Querying/EpisodeQuery.cs
@@ -20,4 +20,23 @@ namespace MediaBrowser.Model.Querying
ExcludeLocationTypes = new LocationType[] { };
}
}
+
+ public class SeasonQuery
+ {
+ public string UserId { get; set; }
+
+ public string SeriesId { get; set; }
+
+ public LocationType[] ExcludeLocationTypes { get; set; }
+
+ public ItemFields[] Fields { get; set; }
+
+ public bool? IsSpecialSeason { get; set; }
+
+ public SeasonQuery()
+ {
+ Fields = new ItemFields[] { };
+ ExcludeLocationTypes = new LocationType[] { };
+ }
+ }
}