mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-17 15:21:20 -04:00
* Have language from epubs populate metadata * series detail needs to reload the underlying volumes when scan event comes in, not just metadata. * Added Id to chapter detail modal (for debugging) * Implement IDisposable on applicable Unit Tests * Removed unused using statements * Fixed a bug where images would flash like crazy during a scan because the code to refresh the underlying image wasn't checking the entity type or Id. * When filtering rating, only apply the filter to your account. * Removed Disposable on tests
21 lines
622 B
C#
21 lines
622 B
C#
using System.Collections.Generic;
|
|
using API.DTOs.CollectionTags;
|
|
using API.DTOs.Metadata;
|
|
using API.DTOs.ReadingLists;
|
|
|
|
namespace API.DTOs.Search;
|
|
|
|
/// <summary>
|
|
/// Represents all Search results for a query
|
|
/// </summary>
|
|
public class SearchResultGroupDto
|
|
{
|
|
public IEnumerable<SearchResultDto> Series { get; set; }
|
|
public IEnumerable<CollectionTagDto> Collections { get; set; }
|
|
public IEnumerable<ReadingListDto> ReadingLists { get; set; }
|
|
public IEnumerable<PersonDto> Persons { get; set; }
|
|
public IEnumerable<GenreTagDto> Genres { get; set; }
|
|
public IEnumerable<TagDto> Tags { get; set; }
|
|
|
|
}
|