mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-11-18 20:43:06 -05:00
Co-authored-by: Fesaa <77553571+Fesaa@users.noreply.github.com> Co-authored-by: GitHub Action <action@github.com>
15 lines
459 B
C#
15 lines
459 B
C#
namespace API.Entities.Enums.UserPreferences;
|
|
|
|
public class AppUserOpdsPreferences
|
|
{
|
|
/// <summary>
|
|
/// Embed Progress Indicator in Title
|
|
/// </summary>
|
|
public bool EmbedProgressIndicator { get; set; } = true;
|
|
/// <summary>
|
|
/// Insert a "Continue From X" entry in OPDS fields to avoid finding your last reading point (Emulates Kavita's Continue button)
|
|
/// </summary>
|
|
public bool IncludeContinueFrom { get; set; } = true;
|
|
|
|
}
|