mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 12:14:44 -04:00
15 lines
346 B
C#
15 lines
346 B
C#
#nullable enable
|
|
using System.Collections.Generic;
|
|
using API.DTOs.SeriesDetail;
|
|
|
|
namespace API.DTOs;
|
|
|
|
public sealed record ChapterDetailPlusDto
|
|
{
|
|
public float Rating { get; set; }
|
|
public bool HasBeenRated { get; set; }
|
|
|
|
public IList<UserReviewDto> Reviews { get; set; } = [];
|
|
public IList<RatingDto> Ratings { get; set; } = [];
|
|
}
|