8 lines
187 B
C#
8 lines
187 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs.Reader;
|
|
|
|
public sealed record BulkRemoveBookmarkForSeriesDto
|
|
{
|
|
public ICollection<int> SeriesIds { get; init; } = default!;
|
|
}
|