mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 20:15:26 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
11 lines
225 B
C#
11 lines
225 B
C#
|
|
namespace Kavita.Models.DTOs.SeriesDetail;
|
|
#nullable enable
|
|
|
|
public sealed record UpdateUserReviewDto
|
|
{
|
|
public int SeriesId { get; set; }
|
|
public int? ChapterId { get; set; }
|
|
public string Body { get; set; }
|
|
}
|