mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-21 14:30:33 -04:00
12 lines
321 B
C#
12 lines
321 B
C#
namespace API.DTOs.Search;
|
|
|
|
public class 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; }
|
|
}
|