mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 20:24:27 -04:00
* Implemented bulk deletion of series * Don't show unauthorized exception on UI, just redirect to the login page.
10 lines
156 B
C#
10 lines
156 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs
|
|
{
|
|
public class DeleteSeriesDto
|
|
{
|
|
public IList<int> SeriesIds { get; set; }
|
|
}
|
|
}
|