Kavita/API/DTOs/Collection/DeleteCollectionsDto.cs
2024-04-06 10:03:49 -07:00

9 lines
158 B
C#

using System.Collections.Generic;
namespace API.DTOs.Collection;
public class DeleteCollectionsDto
{
public IList<int> CollectionIds { get; set; }
}