mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-17 11:43:44 +01:00
Added specialized episodes endpoint, updated nuget.
This commit is contained in:
23
MediaBrowser.Model/Querying/EpisodeQuery.cs
Normal file
23
MediaBrowser.Model/Querying/EpisodeQuery.cs
Normal file
@@ -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[] { };
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user