Kavita/API/DTOs/DeleteSeriesDto.cs
2025-05-04 07:14:44 -07:00

9 lines
158 B
C#

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