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.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/MediaBrowser.Model/Querying/EpisodeQuery.cs b/MediaBrowser.Model/Querying/EpisodeQuery.cs
index 13b1a0dcb..56a7f3320 100644
--- a/MediaBrowser.Model/Querying/EpisodeQuery.cs
+++ b/MediaBrowser.Model/Querying/EpisodeQuery.cs
@@ -7,6 +7,11 @@ namespace MediaBrowser.Model.Querying
{
public class EpisodeQuery
{
+ public EpisodeQuery()
+ {
+ Fields = Array.Empty<ItemFields>();
+ }
+
/// <summary>
/// Gets or sets the user identifier.
/// </summary>
@@ -66,10 +71,5 @@ namespace MediaBrowser.Model.Querying
/// </summary>
/// <value>The start item identifier.</value>
public string StartItemId { get; set; }
-
- public EpisodeQuery()
- {
- Fields = Array.Empty<ItemFields>();
- }
}
}