mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-11 12:35:48 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
16 lines
397 B
C#
16 lines
397 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Kavita.Models.DTOs.WantToRead;
|
|
|
|
/// <summary>
|
|
/// A list of Series to pass when working with Want To Read APIs
|
|
/// </summary>
|
|
public sealed record UpdateWantToReadDto
|
|
{
|
|
/// <summary>
|
|
/// List of Series Ids that will be Added/Removed
|
|
/// </summary>
|
|
public IList<int> SeriesIds { get; set; } = ArraySegment<int>.Empty;
|
|
}
|