namespace API.Entities.Enums.UserPreferences; public class AppUserOpdsPreferences { /// /// Embed Progress Indicator in Title /// public bool EmbedProgressIndicator { get; set; } = true; /// /// Insert a "Continue From X" entry in OPDS fields to avoid finding your last reading point (Emulates Kavita's Continue button) /// public bool IncludeContinueFrom { get; set; } = true; }