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.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Querying/EpisodeQuery.cs b/MediaBrowser.Model/Querying/EpisodeQuery.cs
new file mode 100644
index 000000000..ab9b246c8
--- /dev/null
+++ b/MediaBrowser.Model/Querying/EpisodeQuery.cs
@@ -0,0 +1,23 @@
+using MediaBrowser.Model.Entities;
+
+namespace MediaBrowser.Model.Querying
+{
+ public class EpisodeQuery
+ {
+ public string UserId { get; set; }
+
+ public string SeriesId { get; set; }
+
+ public LocationType[] ExcludeLocationTypes { get; set; }
+
+ public int? SeasonNumber { get; set; }
+
+ public ItemFields[] Fields { get; set; }
+
+ public EpisodeQuery()
+ {
+ Fields = new ItemFields[] { };
+ ExcludeLocationTypes = new LocationType[] { };
+ }
+ }
+}