mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
12 lines
329 B
C#
12 lines
329 B
C#
namespace API.DTOs.Search;
|
|
|
|
public sealed record BookmarkSearchResultDto
|
|
{
|
|
public int LibraryId { get; set; }
|
|
public int VolumeId { get; set; }
|
|
public int SeriesId { get; set; }
|
|
public int ChapterId { get; set; }
|
|
public string SeriesName { get; set; }
|
|
public string LocalizedSeriesName { get; set; }
|
|
}
|