Kavita/API/DTOs/ReadingLists/DeleteReadingListsDto.cs
2024-07-02 17:00:23 -07:00

11 lines
222 B
C#

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace API.DTOs.ReadingLists;
public class DeleteReadingListsDto
{
[Required]
public IList<int> ReadingListIds { get; set; }
}