9 lines
245 B
C#
9 lines
245 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs.ReadingLists;
|
|
|
|
public sealed record UpdateReadingListByMultipleSeriesDto
|
|
{
|
|
public int ReadingListId { get; init; }
|
|
public IReadOnlyList<int> SeriesIds { get; init; } = default!;
|
|
}
|