using System; using System.Collections.Generic; namespace API.DTOs.WantToRead; /// /// A list of Series to pass when working with Want To Read APIs /// public class UpdateWantToReadDto { /// /// List of Series Ids that will be Added/Removed /// public IList SeriesIds { get; set; } = ArraySegment.Empty; }