Kavita/API/DTOs/Collection/DeleteCollectionsDto.cs
2024-05-04 13:23:58 -07:00

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; }
}