Kavita/API/DTOs/ReadingLists/DeleteReadingListsDto.cs
2025-05-04 07:14:44 -07:00

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