mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-07 23:54:16 -04:00
11 lines
218 B
C#
11 lines
218 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace API.DTOs.Collection;
|
|
|
|
public class DeleteCollectionsDto
|
|
{
|
|
[Required]
|
|
public IList<int> CollectionIds { get; set; }
|
|
}
|