mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-01 20:54:12 -04:00
9 lines
187 B
C#
9 lines
187 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs.Reader;
|
|
|
|
public sealed record BulkRemoveBookmarkForSeriesDto
|
|
{
|
|
public ICollection<int> SeriesIds { get; init; } = default!;
|
|
}
|