mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-04-11 03:31:46 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
12 lines
289 B
C#
12 lines
289 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Kavita.Models.DTOs.Reader;
|
|
|
|
namespace Kavita.Models.DTOs.Downloads;
|
|
|
|
public sealed record DownloadBookmarkDto
|
|
{
|
|
[Required]
|
|
public IEnumerable<BookmarkDto> Bookmarks { get; set; } = default!;
|
|
}
|