mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
* Implemented a Want To Read list of series for all users, as a way to keep track of what you want to read. When canceling a bulk action, like Add to Reading list, the selected cards wont de-select. * Hooked up Remove from Want to Read * When making bulk selection, allow the user to click on anywhere on the card * Added no series messaging * Code cleanup
15 lines
338 B
C#
15 lines
338 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs.WantToRead;
|
|
|
|
/// <summary>
|
|
/// A list of Series to pass when working with Want To Read APIs
|
|
/// </summary>
|
|
public class UpdateWantToReadDto
|
|
{
|
|
/// <summary>
|
|
/// List of Series Ids that will be Added/Removed
|
|
/// </summary>
|
|
public IList<int> SeriesIds { get; set; }
|
|
}
|