mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-20 22:10:33 -04:00
11 lines
222 B
C#
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; }
|
|
}
|