Rewatching next up (#7253)

This commit is contained in:
SenorSmartyPants
2022-02-20 11:05:57 -06:00
committed by GitHub
parent a61b42f7ef
commit bbac59c6d6
3 changed files with 39 additions and 10 deletions

View File

@@ -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; }
}
}