12 lines
288 B
C#
12 lines
288 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace API.DTOs.SeriesDetail;
|
|
#nullable enable
|
|
|
|
public class UpdateUserReviewDto
|
|
{
|
|
public int SeriesId { get; set; }
|
|
public int? ChapterId { get; set; }
|
|
public int Rating { get; set; }
|
|
public string Body { get; set; }
|
|
}
|