Kavita/API/DTOs/WantToRead/UpdateWantToReadDto.cs
2025-05-04 07:14:44 -07:00

16 lines
387 B
C#

using System;
using System.Collections.Generic;
namespace API.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;
}