From a86b71899ec52c44ddc6c3018e8cc5e9d7ff4d62 Mon Sep 17 00:00:00 2001 From: Andrew Rabert Date: Thu, 27 Dec 2018 18:27:57 -0500 Subject: Add GPL modules --- MediaBrowser.Model/Querying/EpisodeQuery.cs | 62 +++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 MediaBrowser.Model/Querying/EpisodeQuery.cs (limited to 'MediaBrowser.Model/Querying/EpisodeQuery.cs') diff --git a/MediaBrowser.Model/Querying/EpisodeQuery.cs b/MediaBrowser.Model/Querying/EpisodeQuery.cs new file mode 100644 index 0000000000..78fe943e33 --- /dev/null +++ b/MediaBrowser.Model/Querying/EpisodeQuery.cs @@ -0,0 +1,62 @@ + +namespace MediaBrowser.Model.Querying +{ + public class EpisodeQuery + { + /// + /// Gets or sets the user identifier. + /// + /// The user identifier. + public string UserId { get; set; } + /// + /// Gets or sets the season identifier. + /// + /// The season identifier. + public string SeasonId { get; set; } + /// + /// Gets or sets the series identifier. + /// + /// The series identifier. + public string SeriesId { get; set; } + /// + /// Gets or sets a value indicating whether this instance is missing. + /// + /// null if [is missing] contains no value, true if [is missing]; otherwise, false. + public bool? IsMissing { get; set; } + /// + /// Gets or sets a value indicating whether this instance is virtual unaired. + /// + /// null if [is virtual unaired] contains no value, true if [is virtual unaired]; otherwise, false. + public bool? IsVirtualUnaired { get; set; } + /// + /// Gets or sets the season number. + /// + /// The season number. + public int? SeasonNumber { get; set; } + /// + /// Gets or sets the fields. + /// + /// The fields. + public ItemFields[] Fields { get; set; } + /// + /// Gets or sets the start index. + /// + /// The start index. + public int? StartIndex { get; set; } + /// + /// Gets or sets the limit. + /// + /// The limit. + public int? Limit { get; set; } + /// + /// Gets or sets the start item identifier. + /// + /// The start item identifier. + public string StartItemId { get; set; } + + public EpisodeQuery() + { + Fields = new ItemFields[] { }; + } + } +} -- cgit v1.2.3