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