mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-16 12:04:17 -04:00
9 lines
158 B
C#
9 lines
158 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs.Collection;
|
|
|
|
public class DeleteCollectionsDto
|
|
{
|
|
public IList<int> CollectionIds { get; set; }
|
|
}
|