mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 12:14:44 -04:00
7 lines
118 B
C#
7 lines
118 B
C#
namespace API.DTOs;
|
|
|
|
public sealed record SeriesByIdsDto
|
|
{
|
|
public int[] SeriesIds { get; init; } = default!;
|
|
}
|