using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Kavita.Models.DTOs.Collection; public class DeleteCollectionsDto { [Required] public IList CollectionIds { get; set; } }