Kavita/API/DTOs/SeriesDetail/UpdateUserReviewDto.cs
Amelia 052b3f9fe4
Ingest ExternalReviews from K+
Adds a new entity ExternalChapterMetadata, which would allow us to
extend chapters to Recommendations, Ratings, etc in the future
2025-04-28 16:19:03 +02:00

10 lines
207 B
C#

namespace API.DTOs.SeriesDetail;
#nullable enable
public class UpdateUserReviewDto
{
public int SeriesId { get; set; }
public int? ChapterId { get; set; }
public string Body { get; set; }
}