Kavita/API/DTOs/Search/BookmarkSearchResultDto.cs
2025-05-04 07:14:44 -07:00

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; }
}