Kavita/API/DTOs/DeleteSeriesDto.cs
2025-05-04 08:41:29 -05:00

8 lines
158 B
C#

using System.Collections.Generic;
namespace API.DTOs;
public sealed record DeleteSeriesDto
{
public IList<int> SeriesIds { get; set; } = default!;
}