using System.Collections.Generic; using API.DTOs.CollectionTags; using API.DTOs.Metadata; using API.DTOs.ReadingLists; namespace API.DTOs.Search; /// /// Represents all Search results for a query /// public class SearchResultGroupDto { public IEnumerable Libraries { get; set; } public IEnumerable Series { get; set; } public IEnumerable Collections { get; set; } public IEnumerable ReadingLists { get; set; } public IEnumerable Persons { get; set; } public IEnumerable Genres { get; set; } public IEnumerable Tags { get; set; } public IEnumerable Files { get; set; } public IEnumerable Chapters { get; set; } }