mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 12:05:51 -04:00
13 lines
274 B
C#
13 lines
274 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace API.DTOs.SeriesDetail;
|
|
#nullable enable
|
|
|
|
public class UpdateUserReviewDto
|
|
{
|
|
public int SeriesId { get; set; }
|
|
[MaxLength(120)]
|
|
public string? Tagline { get; set; }
|
|
public string Body { get; set; }
|
|
}
|