Add option to include resumable items in next up requests

This commit is contained in:
Bill Thornton
2023-09-05 23:30:06 -04:00
parent 5c5daac98c
commit 9c64f94458
3 changed files with 20 additions and 11 deletions

View File

@@ -14,6 +14,7 @@ namespace MediaBrowser.Model.Querying
EnableTotalRecordCount = true;
DisableFirstEpisode = false;
NextUpDateCutoff = DateTime.MinValue;
EnableResumable = false;
EnableRewatching = false;
}
@@ -83,6 +84,11 @@ namespace MediaBrowser.Model.Querying
/// </summary>
public DateTime NextUpDateCutoff { get; set; }
/// <summary>
/// Gets or sets a value indicating whether to include resumable episodes as next up.
/// </summary>
public bool EnableResumable { get; set; }
/// <summary>
/// Gets or sets a value indicating whether getting rewatching next up list.
/// </summary>