mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-03 05:34:21 -04:00
16 lines
498 B
C#
16 lines
498 B
C#
namespace API.DTOs
|
|
{
|
|
public class SearchResultDto
|
|
{
|
|
public int SeriesId { get; init; }
|
|
public string Name { get; init; }
|
|
public string OriginalName { get; init; }
|
|
public string SortName { get; init; }
|
|
public byte[] CoverImage { get; init; } // This should be optional or a thumbImage (much smaller)
|
|
|
|
|
|
// Grouping information
|
|
public string LibraryName { get; set; }
|
|
public int LibraryId { get; set; }
|
|
}
|
|
} |