Kavita/API/DTOs/ReadingLists/DeleteReadingListsDto.cs
2025-05-04 08:41:29 -05:00

10 lines
230 B
C#

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