diff options
| author | SenorSmartyPants <senorsmartypants@gmail.com> | 2022-02-20 11:05:57 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-20 18:05:57 +0100 |
| commit | bbac59c6d627ef3ef67e26b10d6571cd9a260466 (patch) | |
| tree | d4398992dd338aed89de0bd6e36be03412ebe938 /MediaBrowser.Model/Querying/NextUpQuery.cs | |
| parent | a61b42f7efa61862f6fbd9829f026afdd498d13b (diff) | |
Rewatching next up (#7253)
Diffstat (limited to 'MediaBrowser.Model/Querying/NextUpQuery.cs')
| -rw-r--r-- | MediaBrowser.Model/Querying/NextUpQuery.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Querying/NextUpQuery.cs b/MediaBrowser.Model/Querying/NextUpQuery.cs index fa8aa829d..7c65fda1a 100644 --- a/MediaBrowser.Model/Querying/NextUpQuery.cs +++ b/MediaBrowser.Model/Querying/NextUpQuery.cs @@ -14,6 +14,7 @@ namespace MediaBrowser.Model.Querying EnableTotalRecordCount = true; DisableFirstEpisode = false; NextUpDateCutoff = DateTime.MinValue; + Rewatching = false; } /// <summary> @@ -81,5 +82,10 @@ namespace MediaBrowser.Model.Querying /// Gets or sets a value indicating the oldest date for a show to appear in Next Up. /// </summary> public DateTime NextUpDateCutoff { get; set; } + + /// <summary> + /// Gets or sets a value indicating whether getting rewatching next up list. + /// </summary> + public bool Rewatching { get; set; } } } |
