mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
12 lines
269 B
C#
12 lines
269 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using API.DTOs.Reader;
|
|
|
|
namespace API.DTOs.Downloads;
|
|
|
|
public sealed record DownloadBookmarkDto
|
|
{
|
|
[Required]
|
|
public IEnumerable<BookmarkDto> Bookmarks { get; set; } = default!;
|
|
}
|