mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-11 12:35:48 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
11 lines
228 B
C#
11 lines
228 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Kavita.Models.DTOs.Collection;
|
|
|
|
public class DeleteCollectionsDto
|
|
{
|
|
[Required]
|
|
public IList<int> CollectionIds { get; set; }
|
|
}
|