mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-11-13 18:16:39 -05:00
11 lines
212 B
C#
11 lines
212 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace API.DTOs.SeriesDetail;
|
|
#nullable enable
|
|
|
|
public class UpdateUserReviewDto
|
|
{
|
|
public int SeriesId { get; set; }
|
|
public string Body { get; set; }
|
|
}
|